Skip to content

Blink example does not work on WeAct Studio MiniSTM32H723VGTX #2886

@ggatis

Description

@ggatis

Blink example does not work on WeAct Studio MiniSTM32H723VGTX.

Complete source code (no comments):

#define USE_PWR_LDO_SUPPLY
void setup() {
  pinMode(LED_BUILTIN, OUTPUT);
  Serial.begin(9600);
  while (!Serial) {
    ;
  }
  Serial.println("\n\nWeAct Studio MiniSTM32H723VGT6 Blink");
  Serial.print("LED_BUILTIN: ");
  Serial.println( LED_BUILTIN );
  Serial.print("PE3: ");
  Serial.println( PE3 );
  Serial.print("PE_3: ");
  Serial.println( PE_3 );
}
void loop() {
  digitalWrite(LED_BUILTIN, HIGH);
  Serial.println("ON");
  delay(1000);
  digitalWrite(LED_BUILTIN, LOW);
  Serial.println("OFF");
  delay(1000);
}

Steps to reproduce the behavior:

  1. Plug
  2. Watch

Output from the serial:
WeAct Studio MiniSTM32H723VGT6 Blink
LED_BUILTIN: 82
PE3: 65
PE_3: 67
ON
OFF
...

Desktop:

  • W11
  • Arduino IDE version: 2.3.7
  • STM32 core version: 2.12.0
  • Tools menu settings: nearly default
  • Upload method: DUF

Board (please complete the following information):

  • Name: WeAct Studio MiniSTM32H723VGTX
  • Hardware Revision: [e.g. Rev B]
  • Extra hardware used: display and camera module

Compile output:

FQBN: STMicroelectronics:stm32:GenH7:pnum=WeActMiniH723VGTX,usb=CDCgen,xusb=HSFS,rtlib=nanofps,upload_method=dfuMethod
Using board 'GenH7' from platform in folder: C:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0
Using core 'arduino' from platform in folder: C:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0

"C:\\Users\\x\\AppData\\Local\\Arduino15\\packages\\STMicroelectronics\\tools\\STM32Tools\\2.4.0/win/busybox.exe" sh "C:\\Users\\x\\AppData\\Local\\Arduino15\\packages\\STMicroelectronics\\hardware\\stm32\\2.12.0\\system/extras/prebuild.sh" "C:\\Users\\x\\AppData\\Local\\arduino\\sketches\\C3E0EE5C8264C3097CC827673D523990" "C:\\Users\\x\\Documents\\Arduino\\WAS_STM32H723_Blink" "C:\\Users\\x\\AppData\\Local\\Arduino15\\packages\\STMicroelectronics\\hardware\\stm32\\2.12.0" "usb=-DUSBCON -DUSE_USB_HS -DUSE_USB_HS_IN_FS -DUSBD_VID=0x0483 -DUSBD_PID=0x5740 -DHAL_PCD_MODULE_ENABLED -DUSBD_USE_CDC" virtio=
Detecting libraries used...
C:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\tools\xpack-arm-none-eabi-gcc\14.2.1-1.1/bin/arm-none-eabi-g++ -mcpu=cortex-m7 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -DVECT_TAB_OFFSET=0x0 -DUSE_HAL_DRIVER -DUSE_FULL_LL_DRIVER -mthumb @C:\Users\x\AppData\Local\arduino\sketches\C3E0EE5C8264C3097CC827673D523990/sketch/build.opt -c -Os -DNDEBUG -w -std=gnu++17 -ffunction-sections -fdata-sections -fno-threadsafe-statics --param max-inline-insns-single=500 -fno-rtti -fno-exceptions -fno-use-cxa-atexit -IC:\Users\x\Documents\Arduino\WAS_STM32H723_Blink -IC:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\cores\arduino/avr -IC:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\cores\arduino/stm32 -IC:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\cores\arduino/../../libraries/SrcWrapper/inc -IC:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\cores\arduino/../../libraries/SrcWrapper/inc/LL -IC:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\system/Drivers/STM32H7xx_HAL_Driver/Inc -IC:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\system/Drivers/STM32H7xx_HAL_Driver/Src -IC:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\system/STM32H7xx -IC:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\cores\arduino/../../libraries/USBDevice/inc -IC:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\system/Middlewares/ST/STM32_USB_Device_Library/Core/Inc -IC:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\system/Middlewares/ST/STM32_USB_Device_Library/Core/Src -IC:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\cores\arduino/../../libraries/VirtIO/inc -IC:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\system/Middlewares/OpenAMP -IC:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\system/Middlewares/OpenAMP/open-amp/lib/include -IC:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\system/Middlewares/OpenAMP/libmetal/lib/include -IC:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\system/Middlewares/OpenAMP/virtual_driver -w -x c++ -E -CC -DSTM32H7xx -DARDUINO=10607 -DARDUINO_WeActMiniH723VGTX -DARDUINO_ARCH_STM32 -DBOARD_NAME="WeActMiniH723VGTX" -DVARIANT_H="variant_generic.h" -DCORE_CM7 -DSTM32H723xx -DUSBCON -DUSE_USB_HS -DUSE_USB_HS_IN_FS -DUSBD_VID=0x0483 -DUSBD_PID=0x5740 -DHAL_PCD_MODULE_ENABLED -DUSBD_USE_CDC -DHAL_UART_MODULE_ENABLED -IC:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\tools\CMSIS\6.2.0/CMSIS/Core/Include/ -IC:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\system/Drivers/CMSIS/Device/ST/STM32H7xx/Include/ -IC:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\system/Drivers/CMSIS/Device/ST/STM32H7xx/Source/Templates/gcc/ -IC:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\tools\CMSIS_DSP\1.16.2/Include -IC:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\tools\CMSIS_DSP\1.16.2/PrivateInclude -IC:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\cores\arduino -IC:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\variants\STM32H7xx\H723V(E-G)(H-T)_H730VB(H-T)_H733VG(H-T) C:\Users\x\AppData\Local\arduino\sketches\C3E0EE5C8264C3097CC827673D523990\sketch\WAS_STM32H723_Blink.ino.cpp -o nul
C:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\tools\xpack-arm-none-eabi-gcc\14.2.1-1.1/bin/arm-none-eabi-g++ -mcpu=cortex-m7 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -DVECT_TAB_OFFSET=0x0 -DUSE_HAL_DRIVER -DUSE_FULL_LL_DRIVER -mthumb @C:\Users\x\AppData\Local\arduino\sketches\C3E0EE5C8264C3097CC827673D523990/sketch/build.opt -c -Os -DNDEBUG -w -std=gnu++17 -ffunction-sections -fdata-sections -fno-threadsafe-statics --param max-inline-insns-single=500 -fno-rtti -fno-exceptions -fno-use-cxa-atexit -IC:\Users\x\Documents\Arduino\WAS_STM32H723_Blink -IC:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\cores\arduino/avr -IC:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\cores\arduino/stm32 -IC:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\cores\arduino/../../libraries/SrcWrapper/inc -IC:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\cores\arduino/../../libraries/SrcWrapper/inc/LL -IC:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\system/Drivers/STM32H7xx_HAL_Driver/Inc -IC:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\system/Drivers/STM32H7xx_HAL_Driver/Src -IC:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\system/STM32H7xx -IC:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\cores\arduino/../../libraries/USBDevice/inc -IC:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\system/Middlewares/ST/STM32_USB_Device_Library/Core/Inc -IC:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\system/Middlewares/ST/STM32_USB_Device_Library/Core/Src -IC:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\cores\arduino/../../libraries/VirtIO/inc -IC:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\system/Middlewares/OpenAMP -IC:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\system/Middlewares/OpenAMP/open-amp/lib/include -IC:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\system/Middlewares/OpenAMP/libmetal/lib/include -IC:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\system/Middlewares/OpenAMP/virtual_driver -w -x c++ -E -CC -DSTM32H7xx -DARDUINO=10607 -DARDUINO_WeActMiniH723VGTX -DARDUINO_ARCH_STM32 -DBOARD_NAME="WeActMiniH723VGTX" -DVARIANT_H="variant_generic.h" -DCORE_CM7 -DSTM32H723xx -DUSBCON -DUSE_USB_HS -DUSE_USB_HS_IN_FS -DUSBD_VID=0x0483 -DUSBD_PID=0x5740 -DHAL_PCD_MODULE_ENABLED -DUSBD_USE_CDC -DHAL_UART_MODULE_ENABLED -IC:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\tools\CMSIS\6.2.0/CMSIS/Core/Include/ -IC:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\system/Drivers/CMSIS/Device/ST/STM32H7xx/Include/ -IC:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\system/Drivers/CMSIS/Device/ST/STM32H7xx/Source/Templates/gcc/ -IC:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\tools\CMSIS_DSP\1.16.2/Include -IC:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\tools\CMSIS_DSP\1.16.2/PrivateInclude -IC:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\cores\arduino -IC:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\variants\STM32H7xx\H723V(E-G)(H-T)_H730VB(H-T)_H733VG(H-T) C:\Users\x\AppData\Local\arduino\sketches\C3E0EE5C8264C3097CC827673D523990\sketch\requiredLibraries.cpp -o nul
Alternatives for SrcWrapper.h: [[email protected]]
ResolveLibrary(SrcWrapper.h)
  -> candidates: [[email protected]]
C:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\tools\xpack-arm-none-eabi-gcc\14.2.1-1.1/bin/arm-none-eabi-g++ -mcpu=cortex-m7 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -DVECT_TAB_OFFSET=0x0 -DUSE_HAL_DRIVER -DUSE_FULL_LL_DRIVER -mthumb @C:\Users\x\AppData\Local\arduino\sketches\C3E0EE5C8264C3097CC827673D523990/sketch/build.opt -c -Os -DNDEBUG -w -std=gnu++17 -ffunction-sections -fdata-sections -fno-threadsafe-statics --param max-inline-insns-single=500 -fno-rtti -fno-exceptions -fno-use-cxa-atexit -IC:\Users\x\Documents\Arduino\WAS_STM32H723_Blink -IC:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\cores\arduino/avr -IC:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\cores\arduino/stm32 -IC:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\cores\arduino/../../libraries/SrcWrapper/inc -IC:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\cores\arduino/../../libraries/SrcWrapper/inc/LL -IC:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\system/Drivers/STM32H7xx_HAL_Driver/Inc -IC:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\system/Drivers/STM32H7xx_HAL_Driver/Src -IC:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\system/STM32H7xx -IC:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\cores\arduino/../../libraries/USBDevice/inc -IC:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\system/Middlewares/ST/STM32_USB_Device_Library/Core/Inc -IC:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\system/Middlewares/ST/STM32_USB_Device_Library/Core/Src -IC:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\cores\arduino/../../libraries/VirtIO/inc -IC:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\system/Middlewares/OpenAMP -IC:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\system/Middlewares/OpenAMP/open-amp/lib/include -IC:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\system/Middlewares/OpenAMP/libmetal/lib/include -IC:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\system/Middlewares/OpenAMP/virtual_driver -w -x c++ -E -CC -DSTM32H7xx -DARDUINO=10607 -DARDUINO_WeActMiniH723VGTX -DARDUINO_ARCH_STM32 -DBOARD_NAME="WeActMiniH723VGTX" -DVARIANT_H="variant_generic.h" -DCORE_CM7 -DSTM32H723xx -DUSBCON -DUSE_USB_HS -DUSE_USB_HS_IN_FS -DUSBD_VID=0x0483 -DUSBD_PID=0x5740 -DHAL_PCD_MODULE_ENABLED -DUSBD_USE_CDC -DHAL_UART_MODULE_ENABLED -IC:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\tools\CMSIS\6.2.0/CMSIS/Core/Include/ -IC:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\system/Drivers/CMSIS/Device/ST/STM32H7xx/Include/ -IC:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\system/Drivers/CMSIS/Device/ST/STM32H7xx/Source/Templates/gcc/ -IC:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\tools\CMSIS_DSP\1.16.2/Include -IC:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\tools\CMSIS_DSP\1.16.2/PrivateInclude -IC:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\cores\arduino -IC:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\variants\STM32H7xx\H723V(E-G)(H-T)_H730VB(H-T)_H733VG(H-T) -IC:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\libraries\SrcWrapper\src C:\Users\x\AppData\Local\arduino\sketches\C3E0EE5C8264C3097CC827673D523990\sketch\requiredLibraries.cpp -o nul
Alternatives for USBDevice.h: [[email protected]]
ResolveLibrary(USBDevice.h)
  -> candidates: [[email protected]]
C:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\tools\xpack-arm-none-eabi-gcc\14.2.1-1.1/bin/arm-none-eabi-g++ -mcpu=cortex-m7 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -DVECT_TAB_OFFSET=0x0 -DUSE_HAL_DRIVER -DUSE_FULL_LL_DRIVER -mthumb @C:\Users\x\AppData\Local\arduino\sketches\C3E0EE5C8264C3097CC827673D523990/sketch/build.opt -c -Os -DNDEBUG -w -std=gnu++17 -ffunction-sections -fdata-sections -fno-threadsafe-statics --param max-inline-insns-single=500 -fno-rtti -fno-exceptions -fno-use-cxa-atexit -IC:\Users\x\Documents\Arduino\WAS_STM32H723_Blink -IC:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\cores\arduino/avr -IC:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\cores\arduino/stm32 -IC:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\cores\arduino/../../libraries/SrcWrapper/inc -IC:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\cores\arduino/../../libraries/SrcWrapper/inc/LL -IC:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\system/Drivers/STM32H7xx_HAL_Driver/Inc -IC:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\system/Drivers/STM32H7xx_HAL_Driver/Src -IC:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\system/STM32H7xx -IC:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\cores\arduino/../../libraries/USBDevice/inc -IC:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\system/Middlewares/ST/STM32_USB_Device_Library/Core/Inc -IC:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\system/Middlewares/ST/STM32_USB_Device_Library/Core/Src -IC:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\cores\arduino/../../libraries/VirtIO/inc -IC:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\system/Middlewares/OpenAMP -IC:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\system/Middlewares/OpenAMP/open-amp/lib/include -IC:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\system/Middlewares/OpenAMP/libmetal/lib/include -IC:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\system/Middlewares/OpenAMP/virtual_driver -w -x c++ -E -CC -DSTM32H7xx -DARDUINO=10607 -DARDUINO_WeActMiniH723VGTX -DARDUINO_ARCH_STM32 -DBOARD_NAME="WeActMiniH723VGTX" -DVARIANT_H="variant_generic.h" -DCORE_CM7 -DSTM32H723xx -DUSBCON -DUSE_USB_HS -DUSE_USB_HS_IN_FS -DUSBD_VID=0x0483 -DUSBD_PID=0x5740 -DHAL_PCD_MODULE_ENABLED -DUSBD_USE_CDC -DHAL_UART_MODULE_ENABLED -IC:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\tools\CMSIS\6.2.0/CMSIS/Core/Include/ -IC:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\system/Drivers/CMSIS/Device/ST/STM32H7xx/Include/ -IC:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\system/Drivers/CMSIS/Device/ST/STM32H7xx/Source/Templates/gcc/ -IC:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\tools\CMSIS_DSP\1.16.2/Include -IC:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\tools\CMSIS_DSP\1.16.2/PrivateInclude -IC:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\cores\arduino -IC:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\variants\STM32H7xx\H723V(E-G)(H-T)_H730VB(H-T)_H733VG(H-T) -IC:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\libraries\SrcWrapper\src -IC:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\libraries\USBDevice\src C:\Users\x\AppData\Local\arduino\sketches\C3E0EE5C8264C3097CC827673D523990\sketch\requiredLibraries.cpp -o nul
Using cached library dependencies for file: C:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\libraries\SrcWrapper\src\HAL\stm32yyxx_hal.c
Using cached library dependencies for file: C:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\libraries\SrcWrapper\src\HAL\stm32yyxx_hal_adc.c
Using cached library dependencies for file: C:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\libraries\SrcWrapper\src\HAL\stm32yyxx_hal_adc_ex.c
Using cached library dependencies for file: C:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\libraries\SrcWrapper\src\HAL\stm32yyxx_hal_can.c
Using cached library dependencies for file: C:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\libraries\SrcWrapper\src\HAL\stm32yyxx_hal_ccb.c
Using cached library dependencies for file: C:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\libraries\SrcWrapper\src\HAL\stm32yyxx_hal_cec.c
Using cached library dependencies for file: C:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\libraries\SrcWrapper\src\HAL\stm32yyxx_hal_comp.c
Using cached library dependencies for file: C:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\libraries\SrcWrapper\src\HAL\stm32yyxx_hal_comp_ex.c
Using cached library dependencies for file: C:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\libraries\SrcWrapper\src\HAL\stm32yyxx_hal_cordic.c
Using cached library dependencies for file: C:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\libraries\SrcWrapper\src\HAL\stm32yyxx_hal_cortex.c
Using cached library dependencies for file: C:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\libraries\SrcWrapper\src\HAL\stm32yyxx_hal_crc.c
Using cached library dependencies for file: C:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\libraries\SrcWrapper\src\HAL\stm32yyxx_hal_crc_ex.c
Using cached library dependencies for file: C:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\libraries\SrcWrapper\src\HAL\stm32yyxx_hal_cryp.c
Using cached library dependencies for file: C:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\libraries\SrcWrapper\src\HAL\stm32yyxx_hal_cryp_ex.c
Using cached library dependencies for file: C:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\libraries\SrcWrapper\src\HAL\stm32yyxx_hal_dac.c
Using cached library dependencies for file: C:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\libraries\SrcWrapper\src\HAL\stm32yyxx_hal_dac_ex.c
Using cached library dependencies for file: C:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\libraries\SrcWrapper\src\HAL\stm32yyxx_hal_dcache.c
Using cached library dependencies for file: C:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\libraries\SrcWrapper\src\HAL\stm32yyxx_hal_dcmi.c
Using cached library dependencies for file: C:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\libraries\SrcWrapper\src\HAL\stm32yyxx_hal_dcmi_ex.c
Using cached library dependencies for file: C:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\libraries\SrcWrapper\src\HAL\stm32yyxx_hal_dfsdm.c
Using cached library dependencies for file: C:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\libraries\SrcWrapper\src\HAL\stm32yyxx_hal_dfsdm_ex.c
Using cached library dependencies for file: C:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\libraries\SrcWrapper\src\HAL\stm32yyxx_hal_dma.c
Using cached library dependencies for file: C:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\libraries\SrcWrapper\src\HAL\stm32yyxx_hal_dma2d.c
Using cached library dependencies for file: C:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\libraries\SrcWrapper\src\HAL\stm32yyxx_hal_dma_ex.c
Using cached library dependencies for file: C:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\libraries\SrcWrapper\src\HAL\stm32yyxx_hal_dsi.c
Using cached library dependencies for file: C:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\libraries\SrcWrapper\src\HAL\stm32yyxx_hal_dts.c
Using cached library dependencies for file: C:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\libraries\SrcWrapper\src\HAL\stm32yyxx_hal_eth.c
Using cached library dependencies for file: C:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\libraries\SrcWrapper\src\HAL\stm32yyxx_hal_eth_ex.c
Using cached library dependencies for file: C:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\libraries\SrcWrapper\src\HAL\stm32yyxx_hal_exti.c
Using cached library dependencies for file: C:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\libraries\SrcWrapper\src\HAL\stm32yyxx_hal_fdcan.c
Using cached library dependencies for file: C:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\libraries\SrcWrapper\src\HAL\stm32yyxx_hal_firewall.c
Using cached library dependencies for file: C:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\libraries\SrcWrapper\src\HAL\stm32yyxx_hal_flash.c
Using cached library dependencies for file: C:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\libraries\SrcWrapper\src\HAL\stm32yyxx_hal_flash_ex.c
Using cached library dependencies for file: C:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\libraries\SrcWrapper\src\HAL\stm32yyxx_hal_flash_ramfunc.c
Using cached library dependencies for file: C:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\libraries\SrcWrapper\src\HAL\stm32yyxx_hal_fmac.c
Using cached library dependencies for file: C:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\libraries\SrcWrapper\src\HAL\stm32yyxx_hal_fmpi2c.c
Using cached library dependencies for file: C:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\libraries\SrcWrapper\src\HAL\stm32yyxx_hal_fmpi2c_ex.c
Using cached library dependencies for file: C:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\libraries\SrcWrapper\src\HAL\stm32yyxx_hal_fmpsmbus.c
Using cached library dependencies for file: C:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\libraries\SrcWrapper\src\HAL\stm32yyxx_hal_fmpsmbus_ex.c
Using cached library dependencies for file: C:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\libraries\SrcWrapper\src\HAL\stm32yyxx_hal_gfxmmu.c
Using cached library dependencies for file: C:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\libraries\SrcWrapper\src\HAL\stm32yyxx_hal_gfxtim.c
Using cached library dependencies for file: C:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\libraries\SrcWrapper\src\HAL\stm32yyxx_hal_gpio.c
Using cached library dependencies for file: C:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\libraries\SrcWrapper\src\HAL\stm32yyxx_hal_gpio_ex.c
Using cached library dependencies for file: C:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\libraries\SrcWrapper\src\HAL\stm32yyxx_hal_gpu2d.c
Using cached library dependencies for file: C:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\libraries\SrcWrapper\src\HAL\stm32yyxx_hal_gtzc.c
Using cached library dependencies for file: C:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\libraries\SrcWrapper\src\HAL\stm32yyxx_hal_hash.c
Using cached library dependencies for file: C:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\libraries\SrcWrapper\src\HAL\stm32yyxx_hal_hash_ex.c
Using cached library dependencies for file: C:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\libraries\SrcWrapper\src\HAL\stm32yyxx_hal_hcd.c
Using cached library dependencies for file: C:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\libraries\SrcWrapper\src\HAL\stm32yyxx_hal_hrtim.c
Using cached library dependencies for file: C:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\libraries\SrcWrapper\src\HAL\stm32yyxx_hal_hsem.c
Using cached library dependencies for file: C:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\libraries\SrcWrapper\src\HAL\stm32yyxx_hal_i2c.c
Using cached library dependencies for file: C:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\libraries\SrcWrapper\src\HAL\stm32yyxx_hal_i2c_ex.c
Using cached library dependencies for file: C:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\libraries\SrcWrapper\src\HAL\stm32yyxx_hal_i2s.c
Using cached library dependencies for file: C:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\libraries\SrcWrapper\src\HAL\stm32yyxx_hal_i2s_ex.c
Using cached library dependencies for file: C:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\libraries\SrcWrapper\src\HAL\stm32yyxx_hal_i3c.c
Using cached library dependencies for file: C:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\libraries\SrcWrapper\src\HAL\stm32yyxx_hal_icache.c
Using cached library dependencies for file: C:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\libraries\SrcWrapper\src\HAL\stm32yyxx_hal_ipcc.c
Using cached library dependencies for file: C:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\libraries\SrcWrapper\src\HAL\stm32yyxx_hal_irda.c
Using cached library dependencies for file: C:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\libraries\SrcWrapper\src\HAL\stm32yyxx_hal_iwdg.c
Using cached library dependencies for file: C:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\libraries\SrcWrapper\src\HAL\stm32yyxx_hal_jpeg.c
Using cached library dependencies for file: C:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\libraries\SrcWrapper\src\HAL\stm32yyxx_hal_lcd.c
Using cached library dependencies for file: C:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\libraries\SrcWrapper\src\HAL\stm32yyxx_hal_lpawur.c
Using cached library dependencies for file: C:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\libraries\SrcWrapper\src\HAL\stm32yyxx_hal_lptim.c
Using cached library dependencies for file: C:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\libraries\SrcWrapper\src\HAL\stm32yyxx_hal_ltdc.c
Using cached library dependencies for file: C:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\libraries\SrcWrapper\src\HAL\stm32yyxx_hal_ltdc_ex.c
Using cached library dependencies for file: C:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\libraries\SrcWrapper\src\HAL\stm32yyxx_hal_mdf.c
Using cached library dependencies for file: C:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\libraries\SrcWrapper\src\HAL\stm32yyxx_hal_mdios.c
Using cached library dependencies for file: C:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\libraries\SrcWrapper\src\HAL\stm32yyxx_hal_mdma.c
Using cached library dependencies for file: C:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\libraries\SrcWrapper\src\HAL\stm32yyxx_hal_mmc.c
Using cached library dependencies for file: C:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\libraries\SrcWrapper\src\HAL\stm32yyxx_hal_mmc_ex.c
Using cached library dependencies for file: C:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\libraries\SrcWrapper\src\HAL\stm32yyxx_hal_mrsubg.c
Using cached library dependencies for file: C:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\libraries\SrcWrapper\src\HAL\stm32yyxx_hal_mrsubg_timer.c
Using cached library dependencies for file: C:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\libraries\SrcWrapper\src\HAL\stm32yyxx_hal_nand.c
Using cached library dependencies for file: C:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\libraries\SrcWrapper\src\HAL\stm32yyxx_hal_nor.c
Using cached library dependencies for file: C:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\libraries\SrcWrapper\src\HAL\stm32yyxx_hal_opamp.c
Using cached library dependencies for file: C:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\libraries\SrcWrapper\src\HAL\stm32yyxx_hal_opamp_ex.c
Using cached library dependencies for file: C:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\libraries\SrcWrapper\src\HAL\stm32yyxx_hal_ospi.c
Using cached library dependencies for file: C:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\libraries\SrcWrapper\src\HAL\stm32yyxx_hal_otfdec.c
Using cached library dependencies for file: C:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\libraries\SrcWrapper\src\HAL\stm32yyxx_hal_pccard.c
Using cached library dependencies for file: C:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\libraries\SrcWrapper\src\HAL\stm32yyxx_hal_pcd.c
Using cached library dependencies for file: C:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\libraries\SrcWrapper\src\HAL\stm32yyxx_hal_pcd_ex.c
Using cached library dependencies for file: C:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\libraries\SrcWrapper\src\HAL\stm32yyxx_hal_pka.c
Using cached library dependencies for file: C:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\libraries\SrcWrapper\src\HAL\stm32yyxx_hal_pssi.c
Using cached library dependencies for file: C:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\libraries\SrcWrapper\src\HAL\stm32yyxx_hal_pwr.c
Using cached library dependencies for file: C:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\libraries\SrcWrapper\src\HAL\stm32yyxx_hal_pwr_ex.c
Using cached library dependencies for file: C:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\libraries\SrcWrapper\src\HAL\stm32yyxx_hal_qspi.c
Using cached library dependencies for file: C:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\libraries\SrcWrapper\src\HAL\stm32yyxx_hal_radio.c
Using cached library dependencies for file: C:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\libraries\SrcWrapper\src\HAL\stm32yyxx_hal_radio_timer.c
Using cached library dependencies for file: C:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\libraries\SrcWrapper\src\HAL\stm32yyxx_hal_ramcfg.c
Using cached library dependencies for file: C:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\libraries\SrcWrapper\src\HAL\stm32yyxx_hal_ramecc.c
Using cached library dependencies for file: C:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\libraries\SrcWrapper\src\HAL\stm32yyxx_hal_rcc.c
Using cached library dependencies for file: C:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\libraries\SrcWrapper\src\HAL\stm32yyxx_hal_rcc_ex.c
Using cached library dependencies for file: C:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\libraries\SrcWrapper\src\HAL\stm32yyxx_hal_rng.c
Using cached library dependencies for file: C:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\libraries\SrcWrapper\src\HAL\stm32yyxx_hal_rng_ex.c
Using cached library dependencies for file: C:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\libraries\SrcWrapper\src\HAL\stm32yyxx_hal_rtc.c
Using cached library dependencies for file: C:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\libraries\SrcWrapper\src\HAL\stm32yyxx_hal_rtc_ex.c
Using cached library dependencies for file: C:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\libraries\SrcWrapper\src\HAL\stm32yyxx_hal_sai.c
Using cached library dependencies for file: C:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\libraries\SrcWrapper\src\HAL\stm32yyxx_hal_sai_ex.c
Using cached library dependencies for file: C:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\libraries\SrcWrapper\src\HAL\stm32yyxx_hal_sd.c
Using cached library dependencies for file: C:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\libraries\SrcWrapper\src\HAL\stm32yyxx_hal_sd_ex.c
Using cached library dependencies for file: C:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\libraries\SrcWrapper\src\HAL\stm32yyxx_hal_sdadc.c
Using cached library dependencies for file: C:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\libraries\SrcWrapper\src\HAL\stm32yyxx_hal_sdio.c
Using cached library dependencies for file: C:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\libraries\SrcWrapper\src\HAL\stm32yyxx_hal_sdram.c
Using cached library dependencies for file: C:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\libraries\SrcWrapper\src\HAL\stm32yyxx_hal_smartcard.c
Using cached library dependencies for file: C:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\libraries\SrcWrapper\src\HAL\stm32yyxx_hal_smartcard_ex.c
Using cached library dependencies for file: C:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\libraries\SrcWrapper\src\HAL\stm32yyxx_hal_smbus.c
Using cached library dependencies for file: C:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\libraries\SrcWrapper\src\HAL\stm32yyxx_hal_smbus_ex.c
Using cached library dependencies for file: C:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\libraries\SrcWrapper\src\HAL\stm32yyxx_hal_spdifrx.c
Using cached library dependencies for file: C:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\libraries\SrcWrapper\src\HAL\stm32yyxx_hal_spi.c
Using cached library dependencies for file: C:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\libraries\SrcWrapper\src\HAL\stm32yyxx_hal_spi_ex.c
Using cached library dependencies for file: C:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\libraries\SrcWrapper\src\HAL\stm32yyxx_hal_sram.c
Using cached library dependencies for file: C:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\libraries\SrcWrapper\src\HAL\stm32yyxx_hal_subghz.c
Using cached library dependencies for file: C:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\libraries\SrcWrapper\src\HAL\stm32yyxx_hal_swpmi.c
Using cached library dependencies for file: C:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\libraries\SrcWrapper\src\HAL\stm32yyxx_hal_tim.c
Using cached library dependencies for file: C:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\libraries\SrcWrapper\src\HAL\stm32yyxx_hal_tim_ex.c
Using cached library dependencies for file: C:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\libraries\SrcWrapper\src\HAL\stm32yyxx_hal_tsc.c
Using cached library dependencies for file: C:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\libraries\SrcWrapper\src\HAL\stm32yyxx_hal_uart.c
Using cached library dependencies for file: C:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\libraries\SrcWrapper\src\HAL\stm32yyxx_hal_uart_ex.c
Using cached library dependencies for file: C:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\libraries\SrcWrapper\src\HAL\stm32yyxx_hal_usart.c
Using cached library dependencies for file: C:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\libraries\SrcWrapper\src\HAL\stm32yyxx_hal_usart_ex.c
Using cached library dependencies for file: C:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\libraries\SrcWrapper\src\HAL\stm32yyxx_hal_wwdg.c
Using cached library dependencies for file: C:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\libraries\SrcWrapper\src\HAL\stm32yyxx_hal_xspi.c
Using cached library dependencies for file: C:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\libraries\SrcWrapper\src\HardwareTimer.cpp
Using cached library dependencies for file: C:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\libraries\SrcWrapper\src\LL\stm32yyxx_ll_adc.c
Using cached library dependencies for file: C:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\libraries\SrcWrapper\src\LL\stm32yyxx_ll_bdma.c
Using cached library dependencies for file: C:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\libraries\SrcWrapper\src\LL\stm32yyxx_ll_comp.c
Using cached library dependencies for file: C:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\libraries\SrcWrapper\src\LL\stm32yyxx_ll_cordic.c
Using cached library dependencies for file: C:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\libraries\SrcWrapper\src\LL\stm32yyxx_ll_crc.c
Using cached library dependencies for file: C:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\libraries\SrcWrapper\src\LL\stm32yyxx_ll_crs.c
Using cached library dependencies for file: C:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\libraries\SrcWrapper\src\LL\stm32yyxx_ll_dac.c
Using cached library dependencies for file: C:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\libraries\SrcWrapper\src\LL\stm32yyxx_ll_delayblock.c
Using cached library dependencies for file: C:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\libraries\SrcWrapper\src\LL\stm32yyxx_ll_dlyb.c
Using cached library dependencies for file: C:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\libraries\SrcWrapper\src\LL\stm32yyxx_ll_dma.c
Using cached library dependencies for file: C:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\libraries\SrcWrapper\src\LL\stm32yyxx_ll_dma2d.c
Using cached library dependencies for file: C:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\libraries\SrcWrapper\src\LL\stm32yyxx_ll_exti.c
Using cached library dependencies for file: C:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\libraries\SrcWrapper\src\LL\stm32yyxx_ll_fmac.c
Using cached library dependencies for file: C:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\libraries\SrcWrapper\src\LL\stm32yyxx_ll_fmc.c
Using cached library dependencies for file: C:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\libraries\SrcWrapper\src\LL\stm32yyxx_ll_fmpi2c.c
Using cached library dependencies for file: C:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\libraries\SrcWrapper\src\LL\stm32yyxx_ll_fsmc.c
Using cached library dependencies for file: C:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\libraries\SrcWrapper\src\LL\stm32yyxx_ll_gpio.c
Using cached library dependencies for file: C:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\libraries\SrcWrapper\src\LL\stm32yyxx_ll_hrtim.c
Using cached library dependencies for file: C:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\libraries\SrcWrapper\src\LL\stm32yyxx_ll_i2c.c
Using cached library dependencies for file: C:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\libraries\SrcWrapper\src\LL\stm32yyxx_ll_i3c.c
Using cached library dependencies for file: C:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\libraries\SrcWrapper\src\LL\stm32yyxx_ll_icache.c
Using cached library dependencies for file: C:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\libraries\SrcWrapper\src\LL\stm32yyxx_ll_lcsc.c
Using cached library dependencies for file: C:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\libraries\SrcWrapper\src\LL\stm32yyxx_ll_lpgpio.c
Using cached library dependencies for file: C:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\libraries\SrcWrapper\src\LL\stm32yyxx_ll_lptim.c
Using cached library dependencies for file: C:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\libraries\SrcWrapper\src\LL\stm32yyxx_ll_lpuart.c
Using cached library dependencies for file: C:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\libraries\SrcWrapper\src\LL\stm32yyxx_ll_mdma.c
Using cached library dependencies for file: C:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\libraries\SrcWrapper\src\LL\stm32yyxx_ll_opamp.c
Using cached library dependencies for file: C:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\libraries\SrcWrapper\src\LL\stm32yyxx_ll_pka.c
Using cached library dependencies for file: C:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\libraries\SrcWrapper\src\LL\stm32yyxx_ll_pwr.c
Using cached library dependencies for file: C:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\libraries\SrcWrapper\src\LL\stm32yyxx_ll_rcc.c
Using cached library dependencies for file: C:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\libraries\SrcWrapper\src\LL\stm32yyxx_ll_rng.c
Using cached library dependencies for file: C:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\libraries\SrcWrapper\src\LL\stm32yyxx_ll_rtc.c
Using cached library dependencies for file: C:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\libraries\SrcWrapper\src\LL\stm32yyxx_ll_sdmmc.c
Using cached library dependencies for file: C:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\libraries\SrcWrapper\src\LL\stm32yyxx_ll_spi.c
Using cached library dependencies for file: C:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\libraries\SrcWrapper\src\LL\stm32yyxx_ll_swpmi.c
Using cached library dependencies for file: C:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\libraries\SrcWrapper\src\LL\stm32yyxx_ll_system.c
Using cached library dependencies for file: C:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\libraries\SrcWrapper\src\LL\stm32yyxx_ll_tim.c
Using cached library dependencies for file: C:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\libraries\SrcWrapper\src\LL\stm32yyxx_ll_ucpd.c
Using cached library dependencies for file: C:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\libraries\SrcWrapper\src\LL\stm32yyxx_ll_usart.c
Using cached library dependencies for file: C:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\libraries\SrcWrapper\src\LL\stm32yyxx_ll_usb.c
Using cached library dependencies for file: C:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\libraries\SrcWrapper\src\LL\stm32yyxx_ll_utils.c
Using cached library dependencies for file: C:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\libraries\SrcWrapper\src\new.cpp
Using cached library dependencies for file: C:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\libraries\SrcWrapper\src\stm32\PortNames.c
Using cached library dependencies for file: C:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\libraries\SrcWrapper\src\stm32\analog.cpp
Using cached library dependencies for file: C:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\libraries\SrcWrapper\src\stm32\bootloader.c
Using cached library dependencies for file: C:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\libraries\SrcWrapper\src\stm32\clock.c
Using cached library dependencies for file: C:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\libraries\SrcWrapper\src\stm32\core_callback.c
Using cached library dependencies for file: C:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\libraries\SrcWrapper\src\stm32\dwt.c
Using cached library dependencies for file: C:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\libraries\SrcWrapper\src\stm32\hw_config.c
Using cached library dependencies for file: C:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\libraries\SrcWrapper\src\stm32\interrupt.cpp
Using cached library dependencies for file: C:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\libraries\SrcWrapper\src\stm32\otp.c
Using cached library dependencies for file: C:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\libraries\SrcWrapper\src\stm32\pinmap.c
Using cached library dependencies for file: C:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\libraries\SrcWrapper\src\stm32\stm32_def.c
Using cached library dependencies for file: C:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\libraries\SrcWrapper\src\stm32\system_stm32yyxx.c
Using cached library dependencies for file: C:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\libraries\SrcWrapper\src\stm32\timer.c
Using cached library dependencies for file: C:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\libraries\SrcWrapper\src\stm32\uart.c
Using cached library dependencies for file: C:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\libraries\SrcWrapper\src\syscalls.c
Using cached library dependencies for file: C:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\libraries\USBDevice\src\USBSerial.cpp
Using cached library dependencies for file: C:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\libraries\USBDevice\src\cdc\cdc_queue.c
Using cached library dependencies for file: C:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\libraries\USBDevice\src\cdc\usbd_cdc.c
Using cached library dependencies for file: C:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\libraries\USBDevice\src\cdc\usbd_cdc_if.c
Using cached library dependencies for file: C:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\libraries\USBDevice\src\hid\usbd_hid_composite.c
Using cached library dependencies for file: C:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\libraries\USBDevice\src\hid\usbd_hid_composite_if.c
Using cached library dependencies for file: C:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\libraries\USBDevice\src\usb_device_core.c
Using cached library dependencies for file: C:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\libraries\USBDevice\src\usb_device_ctlreq.c
Using cached library dependencies for file: C:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\libraries\USBDevice\src\usb_device_ioreq.c
Using cached library dependencies for file: C:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\libraries\USBDevice\src\usbd_conf.c
Using cached library dependencies for file: C:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\libraries\USBDevice\src\usbd_desc.c
Using cached library dependencies for file: C:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\libraries\USBDevice\src\usbd_ep_conf.c
Using cached library dependencies for file: C:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\libraries\USBDevice\src\usbd_if.c
Generating function prototypes...
C:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\tools\xpack-arm-none-eabi-gcc\14.2.1-1.1/bin/arm-none-eabi-g++ -mcpu=cortex-m7 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -DVECT_TAB_OFFSET=0x0 -DUSE_HAL_DRIVER -DUSE_FULL_LL_DRIVER -mthumb @C:\Users\x\AppData\Local\arduino\sketches\C3E0EE5C8264C3097CC827673D523990/sketch/build.opt -c -Os -DNDEBUG -w -std=gnu++17 -ffunction-sections -fdata-sections -fno-threadsafe-statics --param max-inline-insns-single=500 -fno-rtti -fno-exceptions -fno-use-cxa-atexit -IC:\Users\x\Documents\Arduino\WAS_STM32H723_Blink -IC:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\cores\arduino/avr -IC:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\cores\arduino/stm32 -IC:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\cores\arduino/../../libraries/SrcWrapper/inc -IC:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\cores\arduino/../../libraries/SrcWrapper/inc/LL -IC:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\system/Drivers/STM32H7xx_HAL_Driver/Inc -IC:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\system/Drivers/STM32H7xx_HAL_Driver/Src -IC:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\system/STM32H7xx -IC:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\cores\arduino/../../libraries/USBDevice/inc -IC:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\system/Middlewares/ST/STM32_USB_Device_Library/Core/Inc -IC:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\system/Middlewares/ST/STM32_USB_Device_Library/Core/Src -IC:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\cores\arduino/../../libraries/VirtIO/inc -IC:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\system/Middlewares/OpenAMP -IC:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\system/Middlewares/OpenAMP/open-amp/lib/include -IC:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\system/Middlewares/OpenAMP/libmetal/lib/include -IC:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\system/Middlewares/OpenAMP/virtual_driver -w -x c++ -E -CC -DSTM32H7xx -DARDUINO=10607 -DARDUINO_WeActMiniH723VGTX -DARDUINO_ARCH_STM32 -DBOARD_NAME="WeActMiniH723VGTX" -DVARIANT_H="variant_generic.h" -DCORE_CM7 -DSTM32H723xx -DUSBCON -DUSE_USB_HS -DUSE_USB_HS_IN_FS -DUSBD_VID=0x0483 -DUSBD_PID=0x5740 -DHAL_PCD_MODULE_ENABLED -DUSBD_USE_CDC -DHAL_UART_MODULE_ENABLED -IC:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\tools\CMSIS\6.2.0/CMSIS/Core/Include/ -IC:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\system/Drivers/CMSIS/Device/ST/STM32H7xx/Include/ -IC:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\system/Drivers/CMSIS/Device/ST/STM32H7xx/Source/Templates/gcc/ -IC:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\tools\CMSIS_DSP\1.16.2/Include -IC:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\tools\CMSIS_DSP\1.16.2/PrivateInclude -IC:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\cores\arduino -IC:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\variants\STM32H7xx\H723V(E-G)(H-T)_H730VB(H-T)_H733VG(H-T) -IC:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\libraries\SrcWrapper\src -IC:\Users\x\AppData\Local\Arduino15\packages\STMicroelectronics\hardware\stm32\2.12.0\libraries\USBDevice\src C:\Users\x\AppData\Local\arduino\sketches\C3E0EE5C8264C3097CC827673D523990\sketch\WAS_STM32H723_Blink.ino.cpp -o C:\Users\x\AppData\Local\Temp\847445\sketch_merged.cpp
C:\Users\x\AppData\Local\Arduino15\packages\builtin\tools\ctags\5.8-arduino11/ctags -u --language-force=c++ -f - --c++-kinds=svpf --fields=KSTtzns --line-directives C:\Users\x\AppData\Local\Temp\847445\sketch_merged.cpp

Compiling sketch...

...

Metadata

Metadata

Assignees

No one assigned

    Labels

    bug 🐛Something isn't working

    Type

    No type

    Projects

    Status

    Done

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions