{"id":11816,"date":"2021-02-17T16:45:58","date_gmt":"2021-02-17T16:45:58","guid":{"rendered":"http:\/\/blog.bachi.net\/?p=11816"},"modified":"2021-10-27T13:08:35","modified_gmt":"2021-10-27T13:08:35","slug":"platformio-stm32duino","status":"publish","type":"post","link":"https:\/\/blog.bachi.net\/?p=11816","title":{"rendered":"PlatformIO STM32duino Build Process \/ Startup"},"content":{"rendered":"<h3>Build Type<\/h3>\n<pre class=\"brush: plain; title: ; notranslate\" title=\"\">\r\nbuild_type = release | debug\r\n<\/pre>\n<p><a href=\"https:\/\/docs.platformio.org\/en\/latest\/projectconf\/build_configurations.html\">Build Configurations<\/a><br \/>\n<a href=\"https:\/\/docs.platformio.org\/en\/latest\/projectconf\/section_env_build.html\">Build options<\/a><\/p>\n<h3>platform.io ststm32<\/h3>\n<pre class=\"brush: plain; title: .platformio\/platforms\/ststm32\/boards\/nucleo_f072rb.json; notranslate\" title=\".platformio\/platforms\/ststm32\/boards\/nucleo_f072rb.json\">\r\n  &quot;build&quot;: {\r\n    &quot;core&quot;: &quot;stm32&quot;,\r\n    &quot;cpu&quot;: &quot;cortex-m0&quot;,\r\n    &quot;extra_flags&quot;: &quot;-DSTM32F072xB&quot;,\r\n    &quot;f_cpu&quot;: &quot;48000000L&quot;,\r\n    &quot;mcu&quot;: &quot;stm32f072rbt6&quot;,\r\n    &quot;product_line&quot;: &quot;STM32F072xB&quot;,\r\n    &quot;variant&quot;: &quot;NUCLEO_F072RB&quot;\r\n  },\r\n&#x5B;...]\r\n<\/pre>\n<hr>\n<p><!-- ----------------------------------------------------------------------------------------------------------------------------------- --><\/p>\n<h1>Abbreviation<\/h1>\n<table>\n<tr>\n<td>RCC<\/td>\n<td>Reset and Clock Controller<\/td>\n<\/tr>\n<tr>\n<td>PWR<\/td>\n<td>Power Controller block<\/td>\n<\/tr>\n<tr>\n<td>PLL<\/td>\n<td>Phase-Locked Loop<\/td>\n<\/tr>\n<tr>\n<td colspan=\"2\"><b>internal oscillator<\/b><\/td>\n<\/tr>\n<tr>\n<td>RC-OSC<\/td>\n<td>resistor-capacitor oscillator<\/td>\n<\/tr>\n<tr>\n<tr>\n<td>HSI<\/td>\n<td>High-speed internal RC oscillator<\/td>\n<\/tr>\n<tr>\n<td>CSI<\/td>\n<td>Low-power internal RC oscillator<\/td>\n<\/tr>\n<tr>\n<td>LSI<\/td>\n<td>Low-speed internal 32 kHz RC oscillator<\/td>\n<\/tr>\n<tr>\n<td colspan=\"2\"><b>external crystal or resonator<\/b><\/td>\n<\/tr>\n<tr>\n<td>HSE<\/td>\n<td>High-speed external clock<\/td>\n<\/tr>\n<tr>\n<td>LSE<\/td>\n<td>Low-speed external clock<\/td>\n<\/tr>\n<\/table>\n<hr>\n<p><!-- ----------------------------------------------------------------------------------------------------------------------------------- --><\/p>\n<h1>Main<\/h1>\n<pre class=\"brush: plain; collapse: true; light: false; title: .platformio\/packages\/framework-arduinoststm32\/system\/Drivers\/CMSIS\/Device\/ST\/STM32F0xx\/Source\/Templates\/gcc\/startup_stm32f072xb.s; toolbar: true; notranslate\" title=\".platformio\/packages\/framework-arduinoststm32\/system\/Drivers\/CMSIS\/Device\/ST\/STM32F0xx\/Source\/Templates\/gcc\/startup_stm32f072xb.s\">\r\n&#x5B;...]\r\nReset_Handler:\r\n  &#x5B;...]\r\n  \/* Call the clock system intitialization function.*\/\r\n  bl  SystemInit\r\n\r\n  \/* Call static constructors *\/\r\n  bl __libc_init_array\r\n\r\n  \/* Call the application's entry point.*\/\r\n  bl main\r\n\r\nLoopForever:\r\n  b LoopForever\r\n\r\n&#x5B;...]\r\n\r\ng_pfnVectors:\r\n  .word  _estack\r\n  .word  Reset_Handler\r\n  .word  NMI_Handler\r\n  .word  HardFault_Handler\r\n  .word  0\r\n  .word  0\r\n  .word  0\r\n  .word  0\r\n  .word  0\r\n  .word  0\r\n  .word  0\r\n  .word  SVC_Handler\r\n  .word  0\r\n  .word  0\r\n  .word  PendSV_Handler\r\n  .word  SysTick_Handler\r\n  .word  WWDG_IRQHandler                   \/* Window WatchDog              *\/\r\n  .word  PVD_VDDIO2_IRQHandler             \/* PVD and VDDIO2 through EXTI Line detect *\/\r\n  .word  RTC_IRQHandler                    \/* RTC through the EXTI line    *\/\r\n  .word  FLASH_IRQHandler                  \/* FLASH                        *\/\r\n  .word  RCC_CRS_IRQHandler                \/* RCC and CRS                  *\/\r\n  .word  EXTI0_1_IRQHandler                \/* EXTI Line 0 and 1            *\/\r\n  .word  EXTI2_3_IRQHandler                \/* EXTI Line 2 and 3            *\/\r\n  .word  EXTI4_15_IRQHandler               \/* EXTI Line 4 to 15            *\/\r\n  .word  TSC_IRQHandler                    \/* TSC                          *\/\r\n  .word  DMA1_Channel1_IRQHandler          \/* DMA1 Channel 1               *\/\r\n  .word  DMA1_Channel2_3_IRQHandler        \/* DMA1 Channel 2 and Channel 3 *\/\r\n  .word  DMA1_Channel4_5_6_7_IRQHandler    \/* DMA1 Channel 4, Channel 5, Channel 6 and Channel 7*\/\r\n  .word  ADC1_COMP_IRQHandler              \/* ADC1, COMP1 and COMP2         *\/\r\n  .word  TIM1_BRK_UP_TRG_COM_IRQHandler    \/* TIM1 Break, Update, Trigger and Commutation *\/\r\n  .word  TIM1_CC_IRQHandler                \/* TIM1 Capture Compare         *\/\r\n  .word  TIM2_IRQHandler                   \/* TIM2                         *\/\r\n  .word  TIM3_IRQHandler                   \/* TIM3                         *\/\r\n  .word  TIM6_DAC_IRQHandler               \/* TIM6 and DAC                 *\/\r\n  .word  TIM7_IRQHandler                   \/* TIM7                         *\/\r\n  .word  TIM14_IRQHandler                  \/* TIM14                        *\/\r\n  .word  TIM15_IRQHandler                  \/* TIM15                        *\/\r\n  .word  TIM16_IRQHandler                  \/* TIM16                        *\/\r\n  .word  TIM17_IRQHandler                  \/* TIM17                        *\/\r\n  .word  I2C1_IRQHandler                   \/* I2C1                         *\/\r\n  .word  I2C2_IRQHandler                   \/* I2C2                         *\/\r\n  .word  SPI1_IRQHandler                   \/* SPI1                         *\/\r\n  .word  SPI2_IRQHandler                   \/* SPI2                         *\/\r\n  .word  USART1_IRQHandler                 \/* USART1                       *\/\r\n  .word  USART2_IRQHandler                 \/* USART2                       *\/\r\n  .word  USART3_4_IRQHandler               \/* USART3 and USART4            *\/\r\n  .word  CEC_CAN_IRQHandler                \/* CEC and CAN                  *\/\r\n  .word  USB_IRQHandler                    \/* USB                          *\/\r\n\r\n&#x5B;...]\r\n<\/pre>\n<pre class=\"brush: plain; collapse: true; light: false; title: .platformio\/packages\/framework-arduinoststm32\/cores\/arduino\/main.cpp; toolbar: true; notranslate\" title=\".platformio\/packages\/framework-arduinoststm32\/cores\/arduino\/main.cpp\">\r\n\/\/ Force init to be called *first*, i.e. before static object allocation.\r\n\/\/ Otherwise, statically allocated objects that need HAL may fail.\r\n__attribute__((constructor(101))) void premain()\r\n{\r\n\r\n  \/\/ Required by FreeRTOS, see http:\/\/www.freertos.org\/RTOS-Cortex-M3-M4.html\r\n#ifdef NVIC_PRIORITYGROUP_4\r\n  HAL_NVIC_SetPriorityGrouping(NVIC_PRIORITYGROUP_4);\r\n#endif\r\n#if (__CORTEX_M == 0x07U)\r\n  \/\/ Defined in CMSIS core_cm7.h\r\n#ifndef I_CACHE_DISABLED\r\n  SCB_EnableICache();\r\n#endif\r\n#ifndef D_CACHE_DISABLED\r\n  SCB_EnableDCache();\r\n#endif\r\n#endif\r\n\r\n  init();\r\n}\r\n\r\n\/*\r\n * \\brief Main entry point of Arduino application\r\n *\/\r\nint main(void)\r\n{\r\n  initVariant();\r\n\r\n  setup();\r\n\r\n  for (;;) {\r\n#if defined(CORE_CALLBACK)\r\n    CoreCallback();\r\n#endif\r\n    loop();\r\n    serialEventRun();\r\n  }\r\n\r\n  return 0;\r\n}\r\n\r\n<\/pre>\n<pre class=\"brush: cpp; collapse: true; light: false; title: __attribute__((constructor); toolbar: true; notranslate\" title=\"__attribute__((constructor)\">\r\nvoid my_constructor1(void) __attribute__((constructor));\r\nvoid my_constructor2(void) __attribute__((constructor(102)));\r\nvoid my_constructor3(void) __attribute__((constructor(103)));\r\n\r\nvoid my_constructor1(void) \/* This is the 3rd constructor function to be called *\/\r\n    printf(&quot;Called my_constructor1()\\n&quot;);\r\n}\r\n\r\nvoid my_constructor2(void) \/* This is the 1st constructor function to be called *\/\r\n    printf(&quot;Called my_constructor2()\\n&quot;);\r\n}\r\n\r\nvoid my_constructor3(void) \/* This is the 2nd constructor function to be called *\/\r\n    printf(&quot;Called my_constructor3()\\n&quot;);\r\n}\r\n\r\nint main(void)\r\n{\r\n    printf(&quot;Called main()\\n&quot;);\r\n}\r\n<\/pre>\n<p><a href=\"https:\/\/www.keil.com\/support\/man\/docs\/armclang_ref\/armclang_ref_chr1383738546439.htm\">__attribute__((constructor(priority))) function attribute<\/a><br \/>\n<a href=\"https:\/\/developer.arm.com\/documentation\/dui0491\/g\/Compiler-specific-Features\/--attribute----constructor--priority-----function-attribute\">__attribute__((constructor[(priority)]))<\/a><\/p>\n<pre class=\"brush: cpp; collapse: true; light: false; title: .platformio\/packages\/framework-arduinoststm32\/cores\/arduino\/board.c; toolbar: true; notranslate\" title=\".platformio\/packages\/framework-arduinoststm32\/cores\/arduino\/board.c\">\r\nWEAK void init(void)\r\n{\r\n  hw_config_init();\r\n}\r\n<\/pre>\n<pre class=\"brush: cpp; collapse: true; light: false; title: .platformio\/packages\/framework-arduinoststm32\/libraries\/SrcWrapper\/src\/stm32\/hw_config.c; toolbar: true; notranslate\" title=\".platformio\/packages\/framework-arduinoststm32\/libraries\/SrcWrapper\/src\/stm32\/hw_config.c\">\r\n\/**\r\n  * @brief  This function performs the global init of the system (HAL, IOs...)\r\n  * @param  None\r\n  * @retval None\r\n  *\/\r\nvoid hw_config_init(void)\r\n{\r\n  \/* Init DWT if present *\/\r\n#ifdef DWT_BASE\r\n  dwt_init();\r\n#endif\r\n\r\n  \/* Initialize the HAL *\/\r\n  HAL_Init();\r\n\r\n  \/* Configure the system clock *\/\r\n  SystemClock_Config();\r\n\r\n#if defined (USBCON) &amp;&amp; defined(USBD_USE_CDC)\r\n  USBD_CDC_init();\r\n#endif\r\n\r\n#if defined (STM32MP1xx)\r\n  __HAL_RCC_HSEM_CLK_ENABLE();\r\n#endif\r\n\r\n}\r\n<\/pre>\n<pre class=\"brush: cpp; collapse: true; light: false; title: .platformio\/packages\/framework-arduinoststm32\/system\/Drivers\/STM32F0xx_HAL_Driver\/Src\/stm32f0xx_hal.c; toolbar: true; notranslate\" title=\".platformio\/packages\/framework-arduinoststm32\/system\/Drivers\/STM32F0xx_HAL_Driver\/Src\/stm32f0xx_hal.c\">\r\n\/**\r\n  * @brief  This function configures the Flash prefetch,\r\n  *        Configures time base source, NVIC and Low level hardware\r\n  * @note This function is called at the beginning of program after reset and before \r\n  *       the clock configuration\r\n  * @note The time base configuration is based on HSI clock when exiting from Reset.\r\n  *       Once done, time base tick start incrementing.\r\n  *       In the default implementation,Systick is used as source of time base.\r\n  *       The tick variable is incremented each 1ms in its ISR.\r\n  * @retval HAL status\r\n  *\/\r\nHAL_StatusTypeDef HAL_Init(void)\r\n{\r\n    &#x5B;...]\r\n}\r\n<\/pre>\n<pre class=\"brush: cpp; collapse: true; light: false; title: .platformio\/packages\/framework-arduinoststm32\/cores\/arduino\/stm32\/stm32yyxx_hal_conf.h; toolbar: true; notranslate\" title=\".platformio\/packages\/framework-arduinoststm32\/cores\/arduino\/stm32\/stm32yyxx_hal_conf.h\">\r\n#if !defined(HAL_I2C_MODULE_DISABLED)\r\n  #define HAL_I2C_MODULE_ENABLED\r\n#else\r\n  #undef HAL_I2C_MODULE_ENABLED\r\n#endif\r\n\r\n&#x5B;...]\r\n\r\n\/*\r\n * Unused HAL modules\r\n *\/\r\n#if 0\r\n  &#x5B;...]\r\n  HAL_I2S_MODULE_ENABLED\r\n  &#x5B;...]\r\n#endif\r\n\r\n\r\n&#x5B;...]\r\n<\/pre>\n<pre class=\"brush: cpp; collapse: true; light: false; title: .platformio\/packages\/framework-arduinoststm32\/system\/STM32G4xx\/stm32g4xx_hal_conf_default.h; toolbar: true; notranslate\" title=\".platformio\/packages\/framework-arduinoststm32\/system\/STM32G4xx\/stm32g4xx_hal_conf_default.h\">\r\n&#x5B;...]\r\n#ifdef HAL_I2C_MODULE_ENABLED\r\n#include &quot;stm32g4xx_hal_i2c.h&quot;\r\n#endif \/* HAL_I2C_MODULE_ENABLED *\/\r\n\r\n#ifdef HAL_I2S_MODULE_ENABLED\r\n#include &quot;stm32g4xx_hal_i2s.h&quot;\r\n#endif \/* HAL_I2S_MODULE_ENABLED *\/\r\n&#x5B;...]\r\n<\/pre>\n<hr>\n<p><!-- ----------------------------------------------------------------------------------------------------------------------------------- --><\/p>\n<h1>Internal \/ External Oscillator<\/h1>\n<table>\n<tr>\n<td><code>RCC_HSE_OFF<\/code><\/p>\n<td>Disable<\/td>\n<\/tr>\n<tr>\n<td><code>RCC_HSE_BYPASS<\/code><\/p>\n<td>BYPASS Clock Source (from other MCU)<\/td>\n<\/tr>\n<tr>\n<td><code>RCC_HSE_ON<\/code><\/p>\n<td>Crystal\/Ceramic Resonator (own XTAL)<\/td>\n<\/tr>\n<\/table>\n<table>\n<tr>\n<td><a href=\"http:\/\/blog.bachi.net\/wp-content\/uploads\/2021\/02\/Clock_Configuration.png\"><img loading=\"lazy\" decoding=\"async\" src=\"http:\/\/blog.bachi.net\/wp-content\/uploads\/2021\/02\/Clock_Configuration.png\" alt=\"\" width=\"775\" height=\"290\" class=\"alignleft size-full wp-image-11847\" srcset=\"https:\/\/blog.bachi.net\/wp-content\/uploads\/2021\/02\/Clock_Configuration.png 775w, https:\/\/blog.bachi.net\/wp-content\/uploads\/2021\/02\/Clock_Configuration-300x112.png 300w, https:\/\/blog.bachi.net\/wp-content\/uploads\/2021\/02\/Clock_Configuration-768x287.png 768w, https:\/\/blog.bachi.net\/wp-content\/uploads\/2021\/02\/Clock_Configuration-624x233.png 624w\" sizes=\"auto, (max-width: 775px) 100vw, 775px\" \/><\/a><\/td>\n<\/tr>\n<\/table>\n<pre class=\"brush: cpp; collapse: true; light: false; title: .platformio\/packages\/framework-arduinoststm32\/system\/Drivers\/STM32F0xx_HAL_Driver\/Inc\/stm32f0xx_hal_rcc.h; toolbar: true; notranslate\" title=\".platformio\/packages\/framework-arduinoststm32\/system\/Drivers\/STM32F0xx_HAL_Driver\/Inc\/stm32f0xx_hal_rcc.h\">\r\n\/**\r\n  * @brief  RCC Internal\/External Oscillator (HSE, HSI, LSE and LSI) configuration structure definition  \r\n  *\/\r\ntypedef struct\r\n{\r\n  uint32_t OscillatorType;\r\n  uint32_t HSEState;\r\n  uint32_t LSEState; \r\n  uint32_t HSIState;\r\n  uint32_t HSICalibrationValue;\r\n  uint32_t HSI14State;\r\n  uint32_t HSI14CalibrationValue;\r\n  uint32_t LSIState;\r\n  uint32_t HSI48State; \r\n  RCC_PLLInitTypeDef PLL;\r\n} RCC_OscInitTypeDef;\r\n\r\nRCC_OscInitStruct.OscillatorType = RCC_OSCILLATORTYPE_NONE |\r\n                                   RCC_OSCILLATORTYPE_HSE |\r\n                                   RCC_OSCILLATORTYPE_HSI |\r\n                                   RCC_OSCILLATORTYPE_LSE |\r\n                                   RCC_OSCILLATORTYPE_LSI |\r\n                                   RCC_OSCILLATORTYPE_HSI14 |\r\n                                   RCC_OSCILLATORTYPE_HSI48;\r\n\r\n\/* PLL Source Mux *\/\r\nRCC_OscInitStruct.PLL.PLLState  = RCC_PLL_ON;\r\nRCC_OscInitStruct.PLL.PLLSource = RCC_PLLSOURCE_HSE |\r\n                                  RCC_PLLSOURCE_HSI |\r\n                                  RCC_PLLSOURCE_HSI48\r\n\r\nRCC_OscInitStruct.PLL.PLLMUL    = RCC_PLL_MUL6;\r\nRCC_OscInitStruct.PLL.PREDIV    = RCC_PREDIV_DIV1;\r\n\r\n\/**\r\n  * @brief  RCC System, AHB and APB busses clock configuration structure definition  \r\n  *\/\r\ntypedef struct\r\n{\r\n  uint32_t ClockType;             \/*!&lt; The clock to be configured. *\/\r\n  uint32_t SYSCLKSource;          \/*!&lt; The clock source (SYSCLKS). *\/\r\n  uint32_t AHBCLKDivider;         \/*!&lt; The AHB clock (HCLK) divider. *\/\r\n  uint32_t APB1CLKDivider;        \/*!&lt; The APB1 clock (PCLK1) divider. *\/\r\n} RCC_ClkInitTypeDef;\r\n\r\nRCC_ClkInitStruct.ClockType = RCC_CLOCKTYPE_HCLK |\r\n                              RCC_CLOCKTYPE_SYSCLK |\r\n                              RCC_CLOCKTYPE_PCLK1;\r\n\r\n\/* System Clock Mux *\/\r\nRCC_ClkInitStruct.SYSCLKSource = RCC_SYSCLKSOURCE_HSI    |\r\n                                 RCC_SYSCLKSOURCE_HSI48  |\r\n                                 RCC_SYSCLKSOURCE_HSE    |\r\n                                 RCC_SYSCLKSOURCE_PLLCLK;\r\n<\/pre>\n<table>\n<tr>\n<td><a href=\"http:\/\/blog.bachi.net\/wp-content\/uploads\/2021\/02\/rcc_hse.png\"><img loading=\"lazy\" decoding=\"async\" src=\"http:\/\/blog.bachi.net\/wp-content\/uploads\/2021\/02\/rcc_hse.png\" alt=\"\" width=\"618\" height=\"265\" class=\"alignleft size-full wp-image-11845\" srcset=\"https:\/\/blog.bachi.net\/wp-content\/uploads\/2021\/02\/rcc_hse.png 618w, https:\/\/blog.bachi.net\/wp-content\/uploads\/2021\/02\/rcc_hse-300x129.png 300w\" sizes=\"auto, (max-width: 618px) 100vw, 618px\" \/><\/a><\/td>\n<\/tr>\n<\/table>\n<p><a href=\"https:\/\/github.com\/stm32duino\/Arduino_Core_STM32\/issues\/836\">How to check the operating clock speed?<\/a><br \/>\n<a href=\"https:\/\/www.stm32duino.com\/viewtopic.php?t=189\">Blue Pill clock define<\/a><\/p>\n<h4>Arduinos F_CPU<\/h4>\n<p>But it is never used in the source!<\/p>\n<pre class=\"brush: cpp; collapse: true; light: false; title: .platformio\/packages\/framework-arduinoststm32\/cores\/arduino\/stm32\/stm32_def.h; toolbar: true; notranslate\" title=\".platformio\/packages\/framework-arduinoststm32\/cores\/arduino\/stm32\/stm32_def.h\">\r\n&#x5B;...]\r\n#ifndef F_CPU\r\n  #define F_CPU SystemCoreClock\r\n#endif\r\n&#x5B;...]\r\n<\/pre>\n<h4>Internal<\/h4>\n<pre class=\"brush: cpp; collapse: true; light: false; title: .platformio\/packages\/framework-arduinoststm32\/variants\/NUCLEO_F072RB\/variant.cpp; toolbar: true; notranslate\" title=\".platformio\/packages\/framework-arduinoststm32\/variants\/NUCLEO_F072RB\/variant.cpp\">\r\n\/**\r\n  * @brief  System Clock Configuration\r\n  * @param  None\r\n  * @retval None\r\n  *\/\r\nWEAK void SystemClock_Config(void)\r\n{\r\n  RCC_OscInitTypeDef RCC_OscInitStruct;\r\n  RCC_ClkInitTypeDef RCC_ClkInitStruct;\r\n\r\n  RCC_OscInitStruct.OscillatorType = RCC_OSCILLATORTYPE_HSI48;\r\n  RCC_OscInitStruct.HSI48State = RCC_HSI48_ON;\r\n  RCC_OscInitStruct.PLL.PLLState = RCC_PLL_NONE;\r\n  HAL_RCC_OscConfig(&amp;RCC_OscInitStruct);\r\n\r\n  RCC_ClkInitStruct.ClockType = RCC_CLOCKTYPE_HCLK | RCC_CLOCKTYPE_SYSCLK\r\n                                | RCC_CLOCKTYPE_PCLK1;\r\n  RCC_ClkInitStruct.SYSCLKSource = RCC_SYSCLKSOURCE_HSI48;\r\n  RCC_ClkInitStruct.AHBCLKDivider = RCC_SYSCLK_DIV1;\r\n  RCC_ClkInitStruct.APB1CLKDivider = RCC_HCLK_DIV1;\r\n  HAL_RCC_ClockConfig(&amp;RCC_ClkInitStruct, FLASH_LATENCY_1);\r\n}\r\n<\/pre>\n<pre class=\"brush: cpp; collapse: true; light: false; title: .platformio\/packages\/framework-arduinoststm32\/system\/Drivers\/CMSIS\/Device\/ST\/STM32F0xx\/Include\/system_stm32f0xx.h; toolbar: true; notranslate\" title=\".platformio\/packages\/framework-arduinoststm32\/system\/Drivers\/CMSIS\/Device\/ST\/STM32F0xx\/Include\/system_stm32f0xx.h\">\r\n&#x5B;...]\r\nextern uint32_t SystemCoreClock;          \/*!&lt; System Clock Frequency (Core Clock) *\/\r\n&#x5B;...]\r\n<\/pre>\n<pre class=\"brush: cpp; collapse: true; light: false; title: .platformio\/packages\/framework-arduinoststm32\/system\/Drivers\/STM32F0xx_HAL_Driver\/Src\/stm32f0xx_hal_rcc.c; toolbar: true; notranslate\" title=\".platformio\/packages\/framework-arduinoststm32\/system\/Drivers\/STM32F0xx_HAL_Driver\/Src\/stm32f0xx_hal_rcc.c\">\r\n\/**\r\n  * @brief  Initializes the CPU, AHB and APB buses clocks according to the specified \r\n  *         parameters in the RCC_ClkInitStruct.\r\n  * @param  RCC_ClkInitStruct pointer to an RCC_OscInitTypeDef structure that\r\n  *         contains the configuration information for the RCC peripheral.\r\n  * @param  FLatency FLASH Latency                   \r\n  *          The value of this parameter depend on device used within the same series\r\n  * @note   The SystemCoreClock CMSIS variable is used to store System Clock Frequency \r\n  *         and updated by @ref HAL_RCC_GetHCLKFreq() function called within this function\r\n  *\r\n  * @note   The HSI is used (enabled by hardware) as system clock source after\r\n  *         start-up from Reset, wake-up from STOP and STANDBY mode, or in case\r\n  *         of failure of the HSE used directly or indirectly as system clock\r\n  *         (if the Clock Security System CSS is enabled).\r\n  *           \r\n  * @note   A switch from one clock source to another occurs only if the target\r\n  *         clock source is ready (clock stable after start-up delay or PLL locked). \r\n  *         If a clock source which is not yet ready is selected, the switch will\r\n  *         occur when the clock source will be ready. \r\n  *         You can use @ref HAL_RCC_GetClockConfig() function to know which clock is\r\n  *         currently used as system clock source.\r\n  * @retval HAL status\r\n  *\/\r\nHAL_StatusTypeDef HAL_RCC_ClockConfig(RCC_ClkInitTypeDef  *RCC_ClkInitStruct, uint32_t FLatency)\r\n{\r\n  &#x5B;...]\r\n  \r\n  \/* Update the SystemCoreClock global variable *\/\r\n  SystemCoreClock = HAL_RCC_GetSysClockFreq() &gt;&gt; AHBPrescTable&#x5B;(RCC-&gt;CFGR &amp; RCC_CFGR_HPRE)&gt;&gt; RCC_CFGR_HPRE_BITNUMBER];\r\n\r\n  &#x5B;...]\r\n  \r\n  return HAL_OK;\r\n}\r\n<\/pre>\n<h4>External (if possible)<\/h4>\n<pre class=\"brush: cpp; collapse: true; light: false; title: .platformio\/packages\/framework-arduinoststm32\/variants\/Generic_F401Cx\/variant.cpp; toolbar: true; notranslate\" title=\".platformio\/packages\/framework-arduinoststm32\/variants\/Generic_F401Cx\/variant.cpp\">\r\n\/*\r\n * @brief  Configures the System clock source, PLL Multiplier and Divider factors,\r\n *               AHB\/APBx prescalers and Flash settings\r\n * @note   This function should be called only once the RCC clock configuration\r\n *         is reset to the default reset state (done in SystemInit() function).\r\n * @param  None\r\n * @retval None\r\n *\/\r\n\r\n\/******************************************************************************\/\r\n\/*            PLL (clocked by HSE) used as System clock source                *\/\r\n\/******************************************************************************\/\r\nstatic uint8_t SetSysClock_PLL_HSE(uint8_t bypass)\r\n{\r\n  RCC_OscInitTypeDef RCC_OscInitStruct;\r\n  RCC_ClkInitTypeDef RCC_ClkInitStruct;\r\n\r\n  \/* The voltage scaling allows optimizing the power consumption when the device is\r\n  clocked below the maximum system frequency, to update the voltage scaling value\r\n  regarding system frequency refer to product datasheet. *\/\r\n  __HAL_RCC_PWR_CLK_ENABLE();\r\n  __HAL_PWR_VOLTAGESCALING_CONFIG(PWR_REGULATOR_VOLTAGE_SCALE2);\r\n\r\n  \/\/ Enable HSE oscillator and activate PLL with HSE as source\r\n  RCC_OscInitStruct.OscillatorType      = RCC_OSCILLATORTYPE_HSE;\r\n  if (bypass == 0) {\r\n    RCC_OscInitStruct.HSEState          = RCC_HSE_ON; \/\/ External 8 MHz xtal on OSC_IN\/OSC_OUT\r\n  } else {\r\n    RCC_OscInitStruct.HSEState          = RCC_HSE_BYPASS; \/\/ External 8 MHz clock on OSC_IN\r\n  }\r\n\r\n  RCC_OscInitStruct.PLL.PLLState        = RCC_PLL_ON;\r\n  RCC_OscInitStruct.PLL.PLLSource       = RCC_PLLSOURCE_HSE;\r\n  RCC_OscInitStruct.PLL.PLLM            = HSE_VALUE \/ 1000000L; \/\/ Expects an 8 MHz external clock by default. Redefine HSE_VALUE if not\r\n  RCC_OscInitStruct.PLL.PLLN            = 336;                  \/\/ VCO output clock = 336 MHz (1 MHz * 336)\r\n  RCC_OscInitStruct.PLL.PLLP            = RCC_PLLP_DIV4;        \/\/ PLLCLK = 84 MHz (336 MHz \/ 4)\r\n  RCC_OscInitStruct.PLL.PLLQ            = 7;                    \/\/ USB clock = 48 MHz (336 MHz \/ 7) --&gt; OK for USB\r\n  if (HAL_RCC_OscConfig(&amp;RCC_OscInitStruct) != HAL_OK) {\r\n    return 0; \/\/ FAIL\r\n  }\r\n\r\n  \/\/ Select PLL as system clock source and configure the HCLK, PCLK1 and PCLK2 clocks dividers\r\n  RCC_ClkInitStruct.ClockType = RCC_CLOCKTYPE_SYSCLK | RCC_CLOCKTYPE_HCLK | RCC_CLOCKTYPE_PCLK1 | RCC_CLOCKTYPE_PCLK2;\r\n  RCC_ClkInitStruct.SYSCLKSource   = RCC_SYSCLKSOURCE_PLLCLK; \/\/ 84 MHz\r\n  RCC_ClkInitStruct.AHBCLKDivider  = RCC_SYSCLK_DIV1;         \/\/ 84 MHz\r\n  RCC_ClkInitStruct.APB1CLKDivider = RCC_HCLK_DIV2;           \/\/ 42 MHz\r\n  RCC_ClkInitStruct.APB2CLKDivider = RCC_HCLK_DIV1;           \/\/ 84 MHz\r\n  if (HAL_RCC_ClockConfig(&amp;RCC_ClkInitStruct, FLASH_LATENCY_2) != HAL_OK) {\r\n    return 0; \/\/ FAIL\r\n  }\r\n\r\n  \/* Output clock on MCO1 pin(PA8) for debugging purpose *\/\r\n  \/*\r\n  if (bypass == 0)\r\n    HAL_RCC_MCOConfig(RCC_MCO1, RCC_MCO1SOURCE_HSE, RCC_MCODIV_2); \/\/ 4 MHz\r\n  else\r\n    HAL_RCC_MCOConfig(RCC_MCO1, RCC_MCO1SOURCE_HSE, RCC_MCODIV_1); \/\/ 8 MHz\r\n  *\/\r\n\r\n  return 1; \/\/ OK\r\n}\r\n\r\n\/******************************************************************************\/\r\n\/*            PLL (clocked by HSI) used as System clock source                *\/\r\n\/******************************************************************************\/\r\nuint8_t SetSysClock_PLL_HSI(void)\r\n{\r\n  RCC_OscInitTypeDef RCC_OscInitStruct;\r\n  RCC_ClkInitTypeDef RCC_ClkInitStruct;\r\n\r\n  \/* The voltage scaling allows optimizing the power consumption when the device is\r\n    clocked below the maximum system frequency, to update the voltage scaling value\r\n    regarding system frequency refer to product datasheet. *\/\r\n  __HAL_RCC_PWR_CLK_ENABLE();\r\n  __HAL_PWR_VOLTAGESCALING_CONFIG(PWR_REGULATOR_VOLTAGE_SCALE2);\r\n\r\n  \/\/ Enable HSI oscillator and activate PLL with HSI as source\r\n  RCC_OscInitStruct.OscillatorType      = RCC_OSCILLATORTYPE_HSI | RCC_OSCILLATORTYPE_HSE;\r\n  RCC_OscInitStruct.HSIState            = RCC_HSI_ON;\r\n  RCC_OscInitStruct.HSEState            = RCC_HSE_OFF;\r\n  RCC_OscInitStruct.HSICalibrationValue = RCC_HSICALIBRATION_DEFAULT;\r\n  RCC_OscInitStruct.PLL.PLLState        = RCC_PLL_ON;\r\n  RCC_OscInitStruct.PLL.PLLSource       = RCC_PLLSOURCE_HSI;\r\n  RCC_OscInitStruct.PLL.PLLM            = 16;            \/\/ VCO input clock = 1 MHz (16 MHz \/ 16)\r\n  RCC_OscInitStruct.PLL.PLLN            = 336;           \/\/ VCO output clock = 336 MHz (1 MHz * 336)\r\n  RCC_OscInitStruct.PLL.PLLP            = RCC_PLLP_DIV4; \/\/ PLLCLK = 84 MHz (336 MHz \/ 4)\r\n  RCC_OscInitStruct.PLL.PLLQ            = 7;             \/\/ USB clock = 48 MHz (336 MHz \/ 7) --&gt; freq is ok but not precise enough\r\n  if (HAL_RCC_OscConfig(&amp;RCC_OscInitStruct) != HAL_OK) {\r\n    return 0; \/\/ FAIL\r\n  }\r\n\r\n  \/* Select PLL as system clock source and configure the HCLK, PCLK1 and PCLK2 clocks dividers *\/\r\n  RCC_ClkInitStruct.ClockType      = (RCC_CLOCKTYPE_SYSCLK | RCC_CLOCKTYPE_HCLK | RCC_CLOCKTYPE_PCLK1 | RCC_CLOCKTYPE_PCLK2);\r\n  RCC_ClkInitStruct.SYSCLKSource   = RCC_SYSCLKSOURCE_PLLCLK; \/\/ 84 MHz\r\n  RCC_ClkInitStruct.AHBCLKDivider  = RCC_SYSCLK_DIV1;         \/\/ 84 MHz\r\n  RCC_ClkInitStruct.APB1CLKDivider = RCC_HCLK_DIV2;           \/\/ 42 MHz\r\n  RCC_ClkInitStruct.APB2CLKDivider = RCC_HCLK_DIV1;           \/\/ 84 MHz\r\n  if (HAL_RCC_ClockConfig(&amp;RCC_ClkInitStruct, FLASH_LATENCY_2) != HAL_OK) {\r\n    return 0; \/\/ FAIL\r\n  }\r\n\r\n  \/* Output clock on MCO1 pin(PA8) for debugging purpose *\/\r\n  \/\/HAL_RCC_MCOConfig(RCC_MCO1, RCC_MCO1SOURCE_HSI, RCC_MCODIV_1); \/\/ 16 MHz\r\n\r\n  return 1; \/\/ OK\r\n}\r\n\r\nWEAK void SystemClock_Config(void)\r\n{\r\n  \/* 1- If fail try to start with HSE and external xtal *\/\r\n  if (SetSysClock_PLL_HSE(0) == 0) {\r\n    \/* 2- Try to start with HSE and external clock *\/\r\n    if (SetSysClock_PLL_HSE(1) == 0) {\r\n      \/* 3- If fail start with HSI clock *\/\r\n      if (SetSysClock_PLL_HSI() == 0) {\r\n        Error_Handler();\r\n      }\r\n    }\r\n  }\r\n  \/* Output clock on MCO2 pin(PC9) for debugging purpose *\/\r\n  \/\/HAL_RCC_MCOConfig(RCC_MCO2, RCC_MCO2SOURCE_SYSCLK, RCC_MCODIV_4);\r\n}\r\n<\/pre>\n<hr>\n<p><!-- ----------------------------------------------------------------------------------------------------------------------------------- --><\/p>\n<h1>Use STM32duino in STM32CubeIDE<\/h1>\n<h3>Forum<\/h3>\n<p><a href=\"https:\/\/www.stm32duino.com\/viewtopic.php?t=375\">Does STM32CubeIDE work with STM32duino?<\/a><br \/>\n<a href=\"https:\/\/www.stm32duino.com\/viewtopic.php?t=188\">STM32CubeIDE &#8212; using libs from arduino<\/a><\/p>\n<h3>STM32CubeIDE<\/h3>\n<pre class=\"brush: plain; collapse: true; light: false; title: Vanilla Build; toolbar: true; notranslate\" title=\"Vanilla Build\">\r\n17:10:11 **** Build of configuration Debug for project EvalBoardOledRotary ****\r\nmake -j4 all \r\narm-none-eabi-gcc\r\n&quot;..\/Drivers\/STM32F0xx_HAL_Driver\/Src\/stm32f0xx_hal.c&quot;\r\n-mcpu=cortex-m0 -std=gnu11 -g3\r\n-DUSE_HAL_DRIVER -DSTM32F072xB -DDEBUG\r\n-c\r\n-I..\/Core\/Inc\r\n-I..\/Drivers\/STM32F0xx_HAL_Driver\/Inc\r\n-I..\/Drivers\/STM32F0xx_HAL_Driver\/Inc\/Legacy\r\n-I..\/Drivers\/CMSIS\/Device\/ST\/STM32F0xx\/Include\r\n-I..\/Drivers\/CMSIS\/Include\r\n-O0 -ffunction-sections -fdata-sections -Wall -fstack-usage\r\n-MMD -MP -MF&quot;Drivers\/STM32F0xx_HAL_Driver\/Src\/stm32f0xx_hal.d&quot;\r\n-MT&quot;Drivers\/STM32F0xx_HAL_Driver\/Src\/stm32f0xx_hal.o&quot;\r\n--specs=nano.specs -mfloat-abi=soft -mthumb\r\n-o &quot;Drivers\/STM32F0xx_HAL_Driver\/Src\/stm32f0xx_hal.o&quot;\r\n\r\narm-none-eabi-gcc &quot;..\/Drivers\/STM32F0xx_HAL_Driver\/Src\/stm32f0xx_hal_cortex.c&quot; -mcpu=cortex-m0 -std=gnu11 -g3 -DUSE_HAL_DRIVER -DSTM32F072xB -DDEBUG -c -I..\/Core\/Inc -I..\/Drivers\/STM32F0xx_HAL_Driver\/Inc -I..\/Drivers\/STM32F0xx_HAL_Driver\/Inc\/Legacy -I..\/Drivers\/CMSIS\/Device\/ST\/STM32F0xx\/Include -I..\/Drivers\/CMSIS\/Include -O0 -ffunction-sections -fdata-sections -Wall -fstack-usage -MMD -MP -MF&quot;Drivers\/STM32F0xx_HAL_Driver\/Src\/stm32f0xx_hal_cortex.d&quot; -MT&quot;Drivers\/STM32F0xx_HAL_Driver\/Src\/stm32f0xx_hal_cortex.o&quot; --specs=nano.specs -mfloat-abi=soft -mthumb -o &quot;Drivers\/STM32F0xx_HAL_Driver\/Src\/stm32f0xx_hal_cortex.o&quot;\r\narm-none-eabi-gcc &quot;..\/Drivers\/STM32F0xx_HAL_Driver\/Src\/stm32f0xx_hal_dma.c&quot; -mcpu=cortex-m0 -std=gnu11 -g3 -DUSE_HAL_DRIVER -DSTM32F072xB -DDEBUG -c -I..\/Core\/Inc -I..\/Drivers\/STM32F0xx_HAL_Driver\/Inc -I..\/Drivers\/STM32F0xx_HAL_Driver\/Inc\/Legacy -I..\/Drivers\/CMSIS\/Device\/ST\/STM32F0xx\/Include -I..\/Drivers\/CMSIS\/Include -O0 -ffunction-sections -fdata-sections -Wall -fstack-usage -MMD -MP -MF&quot;Drivers\/STM32F0xx_HAL_Driver\/Src\/stm32f0xx_hal_dma.d&quot; -MT&quot;Drivers\/STM32F0xx_HAL_Driver\/Src\/stm32f0xx_hal_dma.o&quot; --specs=nano.specs -mfloat-abi=soft -mthumb -o &quot;Drivers\/STM32F0xx_HAL_Driver\/Src\/stm32f0xx_hal_dma.o&quot;\r\narm-none-eabi-gcc &quot;..\/Drivers\/STM32F0xx_HAL_Driver\/Src\/stm32f0xx_hal_exti.c&quot; -mcpu=cortex-m0 -std=gnu11 -g3 -DUSE_HAL_DRIVER -DSTM32F072xB -DDEBUG -c -I..\/Core\/Inc -I..\/Drivers\/STM32F0xx_HAL_Driver\/Inc -I..\/Drivers\/STM32F0xx_HAL_Driver\/Inc\/Legacy -I..\/Drivers\/CMSIS\/Device\/ST\/STM32F0xx\/Include -I..\/Drivers\/CMSIS\/Include -O0 -ffunction-sections -fdata-sections -Wall -fstack-usage -MMD -MP -MF&quot;Drivers\/STM32F0xx_HAL_Driver\/Src\/stm32f0xx_hal_exti.d&quot; -MT&quot;Drivers\/STM32F0xx_HAL_Driver\/Src\/stm32f0xx_hal_exti.o&quot; --specs=nano.specs -mfloat-abi=soft -mthumb -o &quot;Drivers\/STM32F0xx_HAL_Driver\/Src\/stm32f0xx_hal_exti.o&quot;\r\narm-none-eabi-gcc &quot;..\/Drivers\/STM32F0xx_HAL_Driver\/Src\/stm32f0xx_hal_flash.c&quot; -mcpu=cortex-m0 -std=gnu11 -g3 -DUSE_HAL_DRIVER -DSTM32F072xB -DDEBUG -c -I..\/Core\/Inc -I..\/Drivers\/STM32F0xx_HAL_Driver\/Inc -I..\/Drivers\/STM32F0xx_HAL_Driver\/Inc\/Legacy -I..\/Drivers\/CMSIS\/Device\/ST\/STM32F0xx\/Include -I..\/Drivers\/CMSIS\/Include -O0 -ffunction-sections -fdata-sections -Wall -fstack-usage -MMD -MP -MF&quot;Drivers\/STM32F0xx_HAL_Driver\/Src\/stm32f0xx_hal_flash.d&quot; -MT&quot;Drivers\/STM32F0xx_HAL_Driver\/Src\/stm32f0xx_hal_flash.o&quot; --specs=nano.specs -mfloat-abi=soft -mthumb -o &quot;Drivers\/STM32F0xx_HAL_Driver\/Src\/stm32f0xx_hal_flash.o&quot;\r\narm-none-eabi-gcc &quot;..\/Drivers\/STM32F0xx_HAL_Driver\/Src\/stm32f0xx_hal_flash_ex.c&quot; -mcpu=cortex-m0 -std=gnu11 -g3 -DUSE_HAL_DRIVER -DSTM32F072xB -DDEBUG -c -I..\/Core\/Inc -I..\/Drivers\/STM32F0xx_HAL_Driver\/Inc -I..\/Drivers\/STM32F0xx_HAL_Driver\/Inc\/Legacy -I..\/Drivers\/CMSIS\/Device\/ST\/STM32F0xx\/Include -I..\/Drivers\/CMSIS\/Include -O0 -ffunction-sections -fdata-sections -Wall -fstack-usage -MMD -MP -MF&quot;Drivers\/STM32F0xx_HAL_Driver\/Src\/stm32f0xx_hal_flash_ex.d&quot; -MT&quot;Drivers\/STM32F0xx_HAL_Driver\/Src\/stm32f0xx_hal_flash_ex.o&quot; --specs=nano.specs -mfloat-abi=soft -mthumb -o &quot;Drivers\/STM32F0xx_HAL_Driver\/Src\/stm32f0xx_hal_flash_ex.o&quot;\r\narm-none-eabi-gcc &quot;..\/Drivers\/STM32F0xx_HAL_Driver\/Src\/stm32f0xx_hal_gpio.c&quot; -mcpu=cortex-m0 -std=gnu11 -g3 -DUSE_HAL_DRIVER -DSTM32F072xB -DDEBUG -c -I..\/Core\/Inc -I..\/Drivers\/STM32F0xx_HAL_Driver\/Inc -I..\/Drivers\/STM32F0xx_HAL_Driver\/Inc\/Legacy -I..\/Drivers\/CMSIS\/Device\/ST\/STM32F0xx\/Include -I..\/Drivers\/CMSIS\/Include -O0 -ffunction-sections -fdata-sections -Wall -fstack-usage -MMD -MP -MF&quot;Drivers\/STM32F0xx_HAL_Driver\/Src\/stm32f0xx_hal_gpio.d&quot; -MT&quot;Drivers\/STM32F0xx_HAL_Driver\/Src\/stm32f0xx_hal_gpio.o&quot; --specs=nano.specs -mfloat-abi=soft -mthumb -o &quot;Drivers\/STM32F0xx_HAL_Driver\/Src\/stm32f0xx_hal_gpio.o&quot;\r\narm-none-eabi-gcc &quot;..\/Drivers\/STM32F0xx_HAL_Driver\/Src\/stm32f0xx_hal_i2c.c&quot; -mcpu=cortex-m0 -std=gnu11 -g3 -DUSE_HAL_DRIVER -DSTM32F072xB -DDEBUG -c -I..\/Core\/Inc -I..\/Drivers\/STM32F0xx_HAL_Driver\/Inc -I..\/Drivers\/STM32F0xx_HAL_Driver\/Inc\/Legacy -I..\/Drivers\/CMSIS\/Device\/ST\/STM32F0xx\/Include -I..\/Drivers\/CMSIS\/Include -O0 -ffunction-sections -fdata-sections -Wall -fstack-usage -MMD -MP -MF&quot;Drivers\/STM32F0xx_HAL_Driver\/Src\/stm32f0xx_hal_i2c.d&quot; -MT&quot;Drivers\/STM32F0xx_HAL_Driver\/Src\/stm32f0xx_hal_i2c.o&quot; --specs=nano.specs -mfloat-abi=soft -mthumb -o &quot;Drivers\/STM32F0xx_HAL_Driver\/Src\/stm32f0xx_hal_i2c.o&quot;\r\narm-none-eabi-gcc &quot;..\/Drivers\/STM32F0xx_HAL_Driver\/Src\/stm32f0xx_hal_i2c_ex.c&quot; -mcpu=cortex-m0 -std=gnu11 -g3 -DUSE_HAL_DRIVER -DSTM32F072xB -DDEBUG -c -I..\/Core\/Inc -I..\/Drivers\/STM32F0xx_HAL_Driver\/Inc -I..\/Drivers\/STM32F0xx_HAL_Driver\/Inc\/Legacy -I..\/Drivers\/CMSIS\/Device\/ST\/STM32F0xx\/Include -I..\/Drivers\/CMSIS\/Include -O0 -ffunction-sections -fdata-sections -Wall -fstack-usage -MMD -MP -MF&quot;Drivers\/STM32F0xx_HAL_Driver\/Src\/stm32f0xx_hal_i2c_ex.d&quot; -MT&quot;Drivers\/STM32F0xx_HAL_Driver\/Src\/stm32f0xx_hal_i2c_ex.o&quot; --specs=nano.specs -mfloat-abi=soft -mthumb -o &quot;Drivers\/STM32F0xx_HAL_Driver\/Src\/stm32f0xx_hal_i2c_ex.o&quot;\r\narm-none-eabi-gcc &quot;..\/Drivers\/STM32F0xx_HAL_Driver\/Src\/stm32f0xx_hal_pwr.c&quot; -mcpu=cortex-m0 -std=gnu11 -g3 -DUSE_HAL_DRIVER -DSTM32F072xB -DDEBUG -c -I..\/Core\/Inc -I..\/Drivers\/STM32F0xx_HAL_Driver\/Inc -I..\/Drivers\/STM32F0xx_HAL_Driver\/Inc\/Legacy -I..\/Drivers\/CMSIS\/Device\/ST\/STM32F0xx\/Include -I..\/Drivers\/CMSIS\/Include -O0 -ffunction-sections -fdata-sections -Wall -fstack-usage -MMD -MP -MF&quot;Drivers\/STM32F0xx_HAL_Driver\/Src\/stm32f0xx_hal_pwr.d&quot; -MT&quot;Drivers\/STM32F0xx_HAL_Driver\/Src\/stm32f0xx_hal_pwr.o&quot; --specs=nano.specs -mfloat-abi=soft -mthumb -o &quot;Drivers\/STM32F0xx_HAL_Driver\/Src\/stm32f0xx_hal_pwr.o&quot;\r\narm-none-eabi-gcc &quot;..\/Drivers\/STM32F0xx_HAL_Driver\/Src\/stm32f0xx_hal_pwr_ex.c&quot; -mcpu=cortex-m0 -std=gnu11 -g3 -DUSE_HAL_DRIVER -DSTM32F072xB -DDEBUG -c -I..\/Core\/Inc -I..\/Drivers\/STM32F0xx_HAL_Driver\/Inc -I..\/Drivers\/STM32F0xx_HAL_Driver\/Inc\/Legacy -I..\/Drivers\/CMSIS\/Device\/ST\/STM32F0xx\/Include -I..\/Drivers\/CMSIS\/Include -O0 -ffunction-sections -fdata-sections -Wall -fstack-usage -MMD -MP -MF&quot;Drivers\/STM32F0xx_HAL_Driver\/Src\/stm32f0xx_hal_pwr_ex.d&quot; -MT&quot;Drivers\/STM32F0xx_HAL_Driver\/Src\/stm32f0xx_hal_pwr_ex.o&quot; --specs=nano.specs -mfloat-abi=soft -mthumb -o &quot;Drivers\/STM32F0xx_HAL_Driver\/Src\/stm32f0xx_hal_pwr_ex.o&quot;\r\narm-none-eabi-gcc &quot;..\/Drivers\/STM32F0xx_HAL_Driver\/Src\/stm32f0xx_hal_rcc.c&quot; -mcpu=cortex-m0 -std=gnu11 -g3 -DUSE_HAL_DRIVER -DSTM32F072xB -DDEBUG -c -I..\/Core\/Inc -I..\/Drivers\/STM32F0xx_HAL_Driver\/Inc -I..\/Drivers\/STM32F0xx_HAL_Driver\/Inc\/Legacy -I..\/Drivers\/CMSIS\/Device\/ST\/STM32F0xx\/Include -I..\/Drivers\/CMSIS\/Include -O0 -ffunction-sections -fdata-sections -Wall -fstack-usage -MMD -MP -MF&quot;Drivers\/STM32F0xx_HAL_Driver\/Src\/stm32f0xx_hal_rcc.d&quot; -MT&quot;Drivers\/STM32F0xx_HAL_Driver\/Src\/stm32f0xx_hal_rcc.o&quot; --specs=nano.specs -mfloat-abi=soft -mthumb -o &quot;Drivers\/STM32F0xx_HAL_Driver\/Src\/stm32f0xx_hal_rcc.o&quot;\r\narm-none-eabi-gcc &quot;..\/Drivers\/STM32F0xx_HAL_Driver\/Src\/stm32f0xx_hal_rcc_ex.c&quot; -mcpu=cortex-m0 -std=gnu11 -g3 -DUSE_HAL_DRIVER -DSTM32F072xB -DDEBUG -c -I..\/Core\/Inc -I..\/Drivers\/STM32F0xx_HAL_Driver\/Inc -I..\/Drivers\/STM32F0xx_HAL_Driver\/Inc\/Legacy -I..\/Drivers\/CMSIS\/Device\/ST\/STM32F0xx\/Include -I..\/Drivers\/CMSIS\/Include -O0 -ffunction-sections -fdata-sections -Wall -fstack-usage -MMD -MP -MF&quot;Drivers\/STM32F0xx_HAL_Driver\/Src\/stm32f0xx_hal_rcc_ex.d&quot; -MT&quot;Drivers\/STM32F0xx_HAL_Driver\/Src\/stm32f0xx_hal_rcc_ex.o&quot; --specs=nano.specs -mfloat-abi=soft -mthumb -o &quot;Drivers\/STM32F0xx_HAL_Driver\/Src\/stm32f0xx_hal_rcc_ex.o&quot;\r\narm-none-eabi-gcc &quot;..\/Drivers\/STM32F0xx_HAL_Driver\/Src\/stm32f0xx_hal_tim.c&quot; -mcpu=cortex-m0 -std=gnu11 -g3 -DUSE_HAL_DRIVER -DSTM32F072xB -DDEBUG -c -I..\/Core\/Inc -I..\/Drivers\/STM32F0xx_HAL_Driver\/Inc -I..\/Drivers\/STM32F0xx_HAL_Driver\/Inc\/Legacy -I..\/Drivers\/CMSIS\/Device\/ST\/STM32F0xx\/Include -I..\/Drivers\/CMSIS\/Include -O0 -ffunction-sections -fdata-sections -Wall -fstack-usage -MMD -MP -MF&quot;Drivers\/STM32F0xx_HAL_Driver\/Src\/stm32f0xx_hal_tim.d&quot; -MT&quot;Drivers\/STM32F0xx_HAL_Driver\/Src\/stm32f0xx_hal_tim.o&quot; --specs=nano.specs -mfloat-abi=soft -mthumb -o &quot;Drivers\/STM32F0xx_HAL_Driver\/Src\/stm32f0xx_hal_tim.o&quot;\r\narm-none-eabi-gcc &quot;..\/Drivers\/STM32F0xx_HAL_Driver\/Src\/stm32f0xx_hal_tim_ex.c&quot; -mcpu=cortex-m0 -std=gnu11 -g3 -DUSE_HAL_DRIVER -DSTM32F072xB -DDEBUG -c -I..\/Core\/Inc -I..\/Drivers\/STM32F0xx_HAL_Driver\/Inc -I..\/Drivers\/STM32F0xx_HAL_Driver\/Inc\/Legacy -I..\/Drivers\/CMSIS\/Device\/ST\/STM32F0xx\/Include -I..\/Drivers\/CMSIS\/Include -O0 -ffunction-sections -fdata-sections -Wall -fstack-usage -MMD -MP -MF&quot;Drivers\/STM32F0xx_HAL_Driver\/Src\/stm32f0xx_hal_tim_ex.d&quot; -MT&quot;Drivers\/STM32F0xx_HAL_Driver\/Src\/stm32f0xx_hal_tim_ex.o&quot; --specs=nano.specs -mfloat-abi=soft -mthumb -o &quot;Drivers\/STM32F0xx_HAL_Driver\/Src\/stm32f0xx_hal_tim_ex.o&quot;\r\narm-none-eabi-gcc &quot;..\/Drivers\/STM32F0xx_HAL_Driver\/Src\/stm32f0xx_hal_uart.c&quot; -mcpu=cortex-m0 -std=gnu11 -g3 -DUSE_HAL_DRIVER -DSTM32F072xB -DDEBUG -c -I..\/Core\/Inc -I..\/Drivers\/STM32F0xx_HAL_Driver\/Inc -I..\/Drivers\/STM32F0xx_HAL_Driver\/Inc\/Legacy -I..\/Drivers\/CMSIS\/Device\/ST\/STM32F0xx\/Include -I..\/Drivers\/CMSIS\/Include -O0 -ffunction-sections -fdata-sections -Wall -fstack-usage -MMD -MP -MF&quot;Drivers\/STM32F0xx_HAL_Driver\/Src\/stm32f0xx_hal_uart.d&quot; -MT&quot;Drivers\/STM32F0xx_HAL_Driver\/Src\/stm32f0xx_hal_uart.o&quot; --specs=nano.specs -mfloat-abi=soft -mthumb -o &quot;Drivers\/STM32F0xx_HAL_Driver\/Src\/stm32f0xx_hal_uart.o&quot;\r\narm-none-eabi-gcc &quot;..\/Drivers\/STM32F0xx_HAL_Driver\/Src\/stm32f0xx_hal_uart_ex.c&quot; -mcpu=cortex-m0 -std=gnu11 -g3 -DUSE_HAL_DRIVER -DSTM32F072xB -DDEBUG -c -I..\/Core\/Inc -I..\/Drivers\/STM32F0xx_HAL_Driver\/Inc -I..\/Drivers\/STM32F0xx_HAL_Driver\/Inc\/Legacy -I..\/Drivers\/CMSIS\/Device\/ST\/STM32F0xx\/Include -I..\/Drivers\/CMSIS\/Include -O0 -ffunction-sections -fdata-sections -Wall -fstack-usage -MMD -MP -MF&quot;Drivers\/STM32F0xx_HAL_Driver\/Src\/stm32f0xx_hal_uart_ex.d&quot; -MT&quot;Drivers\/STM32F0xx_HAL_Driver\/Src\/stm32f0xx_hal_uart_ex.o&quot; --specs=nano.specs -mfloat-abi=soft -mthumb -o &quot;Drivers\/STM32F0xx_HAL_Driver\/Src\/stm32f0xx_hal_uart_ex.o&quot;\r\narm-none-eabi-gcc -mcpu=cortex-m0 -g3 -c -x assembler-with-cpp -MMD -MP -MF&quot;Core\/Startup\/startup_stm32f072rbtx.d&quot; -MT&quot;Core\/Startup\/startup_stm32f072rbtx.o&quot; --specs=nano.specs -mfloat-abi=soft -mthumb -o &quot;Core\/Startup\/startup_stm32f072rbtx.o&quot; &quot;..\/Core\/Startup\/startup_stm32f072rbtx.s&quot;\r\narm-none-eabi-gcc &quot;..\/Core\/Src\/main.c&quot; -mcpu=cortex-m0 -std=gnu11 -g3 -DUSE_HAL_DRIVER -DSTM32F072xB -DDEBUG -c -I..\/Core\/Inc -I..\/Drivers\/STM32F0xx_HAL_Driver\/Inc -I..\/Drivers\/STM32F0xx_HAL_Driver\/Inc\/Legacy -I..\/Drivers\/CMSIS\/Device\/ST\/STM32F0xx\/Include -I..\/Drivers\/CMSIS\/Include -O0 -ffunction-sections -fdata-sections -Wall -fstack-usage -MMD -MP -MF&quot;Core\/Src\/main.d&quot; -MT&quot;Core\/Src\/main.o&quot; --specs=nano.specs -mfloat-abi=soft -mthumb -o &quot;Core\/Src\/main.o&quot;\r\narm-none-eabi-gcc &quot;..\/Core\/Src\/stm32f0xx_hal_msp.c&quot; -mcpu=cortex-m0 -std=gnu11 -g3 -DUSE_HAL_DRIVER -DSTM32F072xB -DDEBUG -c -I..\/Core\/Inc -I..\/Drivers\/STM32F0xx_HAL_Driver\/Inc -I..\/Drivers\/STM32F0xx_HAL_Driver\/Inc\/Legacy -I..\/Drivers\/CMSIS\/Device\/ST\/STM32F0xx\/Include -I..\/Drivers\/CMSIS\/Include -O0 -ffunction-sections -fdata-sections -Wall -fstack-usage -MMD -MP -MF&quot;Core\/Src\/stm32f0xx_hal_msp.d&quot; -MT&quot;Core\/Src\/stm32f0xx_hal_msp.o&quot; --specs=nano.specs -mfloat-abi=soft -mthumb -o &quot;Core\/Src\/stm32f0xx_hal_msp.o&quot;\r\narm-none-eabi-gcc &quot;..\/Core\/Src\/stm32f0xx_it.c&quot; -mcpu=cortex-m0 -std=gnu11 -g3 -DUSE_HAL_DRIVER -DSTM32F072xB -DDEBUG -c -I..\/Core\/Inc -I..\/Drivers\/STM32F0xx_HAL_Driver\/Inc -I..\/Drivers\/STM32F0xx_HAL_Driver\/Inc\/Legacy -I..\/Drivers\/CMSIS\/Device\/ST\/STM32F0xx\/Include -I..\/Drivers\/CMSIS\/Include -O0 -ffunction-sections -fdata-sections -Wall -fstack-usage -MMD -MP -MF&quot;Core\/Src\/stm32f0xx_it.d&quot; -MT&quot;Core\/Src\/stm32f0xx_it.o&quot; --specs=nano.specs -mfloat-abi=soft -mthumb -o &quot;Core\/Src\/stm32f0xx_it.o&quot;\r\narm-none-eabi-gcc &quot;..\/Core\/Src\/syscalls.c&quot; -mcpu=cortex-m0 -std=gnu11 -g3 -DUSE_HAL_DRIVER -DSTM32F072xB -DDEBUG -c -I..\/Core\/Inc -I..\/Drivers\/STM32F0xx_HAL_Driver\/Inc -I..\/Drivers\/STM32F0xx_HAL_Driver\/Inc\/Legacy -I..\/Drivers\/CMSIS\/Device\/ST\/STM32F0xx\/Include -I..\/Drivers\/CMSIS\/Include -O0 -ffunction-sections -fdata-sections -Wall -fstack-usage -MMD -MP -MF&quot;Core\/Src\/syscalls.d&quot; -MT&quot;Core\/Src\/syscalls.o&quot; --specs=nano.specs -mfloat-abi=soft -mthumb -o &quot;Core\/Src\/syscalls.o&quot;\r\narm-none-eabi-gcc &quot;..\/Core\/Src\/sysmem.c&quot; -mcpu=cortex-m0 -std=gnu11 -g3 -DUSE_HAL_DRIVER -DSTM32F072xB -DDEBUG -c -I..\/Core\/Inc -I..\/Drivers\/STM32F0xx_HAL_Driver\/Inc -I..\/Drivers\/STM32F0xx_HAL_Driver\/Inc\/Legacy -I..\/Drivers\/CMSIS\/Device\/ST\/STM32F0xx\/Include -I..\/Drivers\/CMSIS\/Include -O0 -ffunction-sections -fdata-sections -Wall -fstack-usage -MMD -MP -MF&quot;Core\/Src\/sysmem.d&quot; -MT&quot;Core\/Src\/sysmem.o&quot; --specs=nano.specs -mfloat-abi=soft -mthumb -o &quot;Core\/Src\/sysmem.o&quot;\r\narm-none-eabi-gcc &quot;..\/Core\/Src\/system_stm32f0xx.c&quot; -mcpu=cortex-m0 -std=gnu11 -g3 -DUSE_HAL_DRIVER -DSTM32F072xB -DDEBUG -c -I..\/Core\/Inc -I..\/Drivers\/STM32F0xx_HAL_Driver\/Inc -I..\/Drivers\/STM32F0xx_HAL_Driver\/Inc\/Legacy -I..\/Drivers\/CMSIS\/Device\/ST\/STM32F0xx\/Include -I..\/Drivers\/CMSIS\/Include -O0 -ffunction-sections -fdata-sections -Wall -fstack-usage -MMD -MP -MF&quot;Core\/Src\/system_stm32f0xx.d&quot; -MT&quot;Core\/Src\/system_stm32f0xx.o&quot; --specs=nano.specs -mfloat-abi=soft -mthumb -o &quot;Core\/Src\/system_stm32f0xx.o&quot;\r\n\r\narm-none-eabi-g++\r\n-o &quot;EvalBoardOledRotary.elf&quot;\r\n@&quot;objects.list&quot;\r\n-mcpu=cortex-m0\r\n-T&quot;C:\\Users\\andreas\\STM32CubeIDE\\workspace_1.5.1\\EvalBoardOledRotary\\STM32F072RBTX_FLASH.ld&quot;\r\n--specs=nosys.specs\r\n-Wl,-Map=&quot;EvalBoardOledRotary.map&quot;\r\n-Wl,--gc-sections -static --specs=nano.specs -mfloat-abi=soft -mthumb\r\n-Wl,--start-group -lc -lm -lstdc++ -lsupc++ -Wl,--end-group\r\nFinished building target: EvalBoardOledRotary.elf\r\n \r\narm-none-eabi-size   EvalBoardOledRotary.elf \r\narm-none-eabi-objdump -h -S  EvalBoardOledRotary.elf  &gt; &quot;EvalBoardOledRotary.list&quot;\r\narm-none-eabi-objcopy  -O binary  EvalBoardOledRotary.elf  &quot;EvalBoardOledRotary.bin&quot;\r\n   text\t   data\t    bss\t    dec\t    hex\tfilename\r\n   7724\t     20\t   1700\t   9444\t   24e4\tEvalBoardOledRotary.elf\r\nFinished building: default.size.stdout\r\n \r\nFinished building: EvalBoardOledRotary.bin\r\nFinished building: EvalBoardOledRotary.list\r\n <\/pre>\n<h3>Nucleo G474RB<\/h3>\n<ul>\n<li><code>CMSIS_STARTUP_FILE<\/code><\/li>\n<li><code>CUSTOM_STARTUP_FILE<\/code><\/li>\n<\/ul>\n<pre class=\"brush: plain; collapse: true; light: false; title: .platformio\/packages\/framework-arduinoststm32\/cores\/arduino\/stm32\/startup_stm32yyxx.S -&gt; stm32_def_build.h -&gt; startup_stm32g474xx.s; toolbar: true; notranslate\" title=\".platformio\/packages\/framework-arduinoststm32\/cores\/arduino\/stm32\/startup_stm32yyxx.S -&gt; stm32_def_build.h -&gt; startup_stm32g474xx.s\">\r\n\/\/ C:\\Users\\bacr\\.platformio\\packages\\framework-arduinoststm32\\system\\Drivers\\CMSIS\\Device\\ST\\STM32G4xx\\Source\\Templates\\gcc\r\n<\/pre>\n<pre class=\"brush: plain; collapse: true; light: false; title: readelf \/objdump; toolbar: true; notranslate\" title=\"readelf \/objdump\">\r\n$ \/c\/Users\/bacr\/.platformio\/packages\/toolchain-gccarmnoneeabi\/bin\/arm-none-eabi-readelf -e .pio\/build\/nucleo_g474re\/firmware.elf\r\nELF Header:\r\n  Magic:   7f 45 4c 46 01 01 01 00 00 00 00 00 00 00 00 00\r\n  Class:                             ELF32\r\n  Data:                              2's complement, little endian\r\n  Version:                           1 (current)\r\n  OS\/ABI:                            UNIX - System V\r\n  ABI Version:                       0\r\n  Type:                              EXEC (Executable file)\r\n  Machine:                           ARM\r\n  Version:                           0x1\r\n  Entry point address:               0x800b9a9\r\n  Start of program headers:          52 (bytes into file)\r\n  Start of section headers:          259544 (bytes into file)\r\n  Flags:                             0x5000400, Version5 EABI, hard-float ABI\r\n  Size of this header:               52 (bytes)\r\n  Size of program headers:           32 (bytes)\r\n  Number of program headers:         4\r\n  Size of section headers:           40 (bytes)\r\n  Number of section headers:         19\r\n  Section header string table index: 18\r\n\r\nSection Headers:\r\n  &#x5B;Nr] Name              Type            Addr     Off    Size   ES Flg Lk Inf Al\r\n  &#x5B; 0]                   NULL            00000000 000000 000000 00      0   0  0\r\n  &#x5B; 1] .isr_vector       PROGBITS        08000000 010000 0001d8 00   A  0   0  1\r\n  &#x5B; 2] .text             PROGBITS        080001e0 0101e0 00e9f0 00  AX  0   0 16\r\n  &#x5B; 3] .rodata           PROGBITS        0800ebd0 01ebd0 002f3c 00   A  0   0  8\r\n  &#x5B; 4] .ARM.extab        PROGBITS        08011b0c 0308c4 000000 00   W  0   0  1\r\n  &#x5B; 5] .ARM              ARM_EXIDX       08011b0c 021b0c 000008 00  AL  2   0  4\r\n  &#x5B; 6] .preinit_array    PREINIT_ARRAY   08011b14 0308c4 000000 04  WA  0   0  1\r\n  &#x5B; 7] .init_array       INIT_ARRAY      08011b14 021b14 000024 04  WA  0   0  4\r\n  &#x5B; 8] .fini_array       FINI_ARRAY      08011b38 021b38 00000c 04  WA  0   0  4\r\n  &#x5B; 9] .data             PROGBITS        20000000 030000 0008c4 00  WA  0   0  4\r\n  &#x5B;10] .bss              NOBITS          200008c8 0308c8 001984 00  WA  0   0  8\r\n  &#x5B;11] .noinit           PROGBITS        2000224c 0308c4 000000 00   W  0   0  1\r\n  &#x5B;12] ._user_heap_stack NOBITS          2000224c 03224c 000604 00  WA  0   0  1\r\n  &#x5B;13] .ARM.attributes   ARM_ATTRIBUTES  00000000 0308c4 000030 00      0   0  1\r\n  &#x5B;14] .comment          PROGBITS        00000000 0308f4 000066 01  MS  0   0  1\r\n  &#x5B;15] .debug_frame      PROGBITS        00000000 03095c 00128c 00      0   0  4\r\n  &#x5B;16] .symtab           SYMTAB          00000000 031be8 0088f0 10     17 1419  4\r\n  &#x5B;17] .strtab           STRTAB          00000000 03a4d8 005048 00      0   0  1\r\n  &#x5B;18] .shstrtab         STRTAB          00000000 03f520 0000b7 00      0   0  1\r\nKey to Flags:\r\n  W (write), A (alloc), X (execute), M (merge), S (strings), I (info),\r\n  L (link order), O (extra OS processing required), G (group), T (TLS),\r\n  C (compressed), x (unknown), o (OS specific), E (exclude),\r\n  y (purecode), p (processor specific)\r\n\r\nProgram Headers:\r\n  Type           Offset   VirtAddr   PhysAddr   FileSiz MemSiz  Flg Align\r\n  LOAD           0x010000 0x08000000 0x08000000 0x11b44 0x11b44 RWE 0x10000\r\n  LOAD           0x030000 0x20000000 0x08011b44 0x008c4 0x008c4 RW  0x10000\r\n  LOAD           0x0308c8 0x200008c8 0x08012408 0x00000 0x01984 RW  0x10000\r\n  LOAD           0x03224c 0x2000224c 0x2000224c 0x00000 0x00604 RW  0x10000\r\n\r\n Section to Segment mapping:\r\n  Segment Sections...\r\n   00     .isr_vector .text .rodata .ARM .init_array .fini_array\r\n   01     .data\r\n   02     .bss\r\n   03     ._user_heap_stack\r\n\r\n$ \/c\/Users\/bacr\/.platformio\/packages\/toolchain-gccarmnoneeabi\/bin\/arm-none-eabi-objdump.exe -f .pio\/build\/nucleo_g474re\/firmware.elf\r\n.pio\/build\/nucleo_g474re\/firmware.elf:     file format elf32-littlearm\r\narchitecture: armv7e-m, flags 0x00000112:\r\nEXEC_P, HAS_SYMS, D_PAGED\r\nstart address 0x0800b9a9\r\n\r\n\r\n$ \/c\/Users\/bacr\/.platformio\/packages\/toolchain-gccarmnoneeabi\/bin\/arm-none-eabi-objdump.exe -D .pio\/build\/nucleo_g474re\/firmware.elf | grep -C 10 ADC1_2_IRQHandler\r\n0800b9de &lt;LoopForever&gt;:\r\n 800b9de:       e7fe            b.n     800b9de &lt;LoopForever&gt;\r\n 800b9e0:       20020000        andcs   r0, r2, r0\r\n 800b9e4:       20000000        andcs   r0, r0, r0\r\n 800b9e8:       200008c4        andcs   r0, r0, r4, asr #17\r\n 800b9ec:       08011b44        stmdaeq r1, {r2, r6, r8, r9, fp, ip}\r\n 800b9f0:       200008c8        andcs   r0, r0, r8, asr #17\r\n 800b9f4:       2000224c        andcs   r2, r0, ip, asr #4\r\n\r\n0800b9f8 &lt;ADC1_2_IRQHandler&gt;:\r\n 800b9f8:       e7fe            b.n     800b9f8 &lt;ADC1_2_IRQHandler&gt;\r\n        ...\r\n\r\n0800b9fc &lt;pinMode&gt;:\r\n 800b9fc:       b2c3            uxtb    r3, r0\r\n<\/pre>\n<pre class=\"brush: plain; collapse: true; light: false; title: C++ Compile Startup; toolbar: true; notranslate\" title=\"C++ Compile Startup\">\r\npackages\/toolchain-gccarmnoneeabi\/bin\/arm-none-eabi-gcc\r\n\r\narm-none-eabi-gcc\r\n-x assembler-with-cpp\r\n-mfpu=fpv4-sp-d16\r\n-mfloat-abi=hard\r\n-Os\r\n-mcpu=cortex-m4\r\n-mthumb\r\n-ffunction-sections\r\n-fdata-sections\r\n-nostdlib\r\n--param max-inline-insns-single=500\r\n-DPLATFORMIO=50202\r\n-DSTM32G4xx\r\n-DSTM32G474xx\r\n-DPIO_FRAMEWORK_ARDUINO_NANOLIB_FLOAT_PRINTF\r\n-DENABLE_HWSERIAL3\r\n-DPIN_SERIAL_RX=PC0\r\n-DPIN_SERIAL_TX=PC1\r\n-DPIN_SERIAL3_RX=PB11\r\n-DPIN_SERIAL3_TX=PB10\r\n-DSERIAL_RX_BUFFER_SIZE=256\r\n-DSERIAL_TX_BUFFER_SIZE=256\r\n-DPIN_WIRE_SDA=PC9\r\n-DPIN_WIRE_SCL=PC8\r\n-DSTM32G4xx\r\n-DARDUINO=10808\r\n-DARDUINO_ARCH_STM32\r\n-DARDUINO_NUCLEO_G474RE\r\n-DBOARD_NAME=\\&quot;NUCLEO_G474RE\\&quot;\r\n-DHAL_UART_MODULE_ENABLED\r\n-DUSE_FULL_LL_DRIVER\r\n-DVARIANT_H=\\&quot;variant_NUCLEO_G474RE.h\\&quot;\r\n-IC:\\Users\\bacr\\.platformio\\packages\\framework-arduinoststm32\\cores\\arduino\\avr\r\n-IC:\\Users\\bacr\\.platformio\\packages\\framework-arduinoststm32\\cores\\arduino\\stm32\r\n-IC:\\Users\\bacr\\.platformio\\packages\\framework-arduinoststm32\\cores\\arduino\\stm32\\LL\r\n-IC:\\Users\\bacr\\.platformio\\packages\\framework-arduinoststm32\\cores\\arduino\\stm32\\usb\r\n-IC:\\Users\\bacr\\.platformio\\packages\\framework-arduinoststm32\\cores\\arduino\\stm32\\OpenAMP\r\n-IC:\\Users\\bacr\\.platformio\\packages\\framework-arduinoststm32\\cores\\arduino\\stm32\\usb\\hid\r\n-IC:\\Users\\bacr\\.platformio\\packages\\framework-arduinoststm32\\cores\\arduino\\stm32\\usb\\cdc\r\n-IC:\\Users\\bacr\\.platformio\\packages\\framework-arduinoststm32\\system\\Drivers\\STM32G4xx_HAL_Driver\\Inc\r\n-IC:\\Users\\bacr\\.platformio\\packages\\framework-arduinoststm32\\system\\Drivers\\STM32G4xx_HAL_Driver\\Src\r\n-IC:\\Users\\bacr\\.platformio\\packages\\framework-arduinoststm32\\system\\STM32G4xx\r\n-IC:\\Users\\bacr\\.platformio\\packages\\framework-arduinoststm32\\system\\Middlewares\\ST\\STM32_USB_Device_Library\\Core\\Inc\r\n-IC:\\Users\\bacr\\.platformio\\packages\\framework-arduinoststm32\\system\\Middlewares\\ST\\STM32_USB_Device_Library\\Core\\Src\r\n-IC:\\Users\\bacr\\.platformio\\packages\\framework-arduinoststm32\\system\\Middlewares\\OpenAMP\r\n-IC:\\Users\\bacr\\.platformio\\packages\\framework-arduinoststm32\\system\\Middlewares\\OpenAMP\\open-amp\\lib\\include\r\n-IC:\\Users\\bacr\\.platformio\\packages\\framework-arduinoststm32\\system\\Middlewares\\OpenAMP\\libmetal\\lib\\include\r\n-IC:\\Users\\bacr\\.platformio\\packages\\framework-arduinoststm32\\system\\Middlewares\\OpenAMP\\virtual_driver\r\n-IC:\\Users\\bacr\\.platformio\\packages\\framework-cmsis\\CMSIS\\Core\\Include\r\n-IC:\\Users\\bacr\\.platformio\\packages\\framework-arduinoststm32\\system\\Drivers\\CMSIS\\Device\\ST\\STM32G4xx\\Include\r\n-IC:\\Users\\bacr\\.platformio\\packages\\framework-arduinoststm32\\system\\Drivers\\CMSIS\\Device\\ST\\STM32G4xx\\Source\\Templates\\gcc\r\n-IC:\\Users\\bacr\\.platformio\\packages\\framework-cmsis\\CMSIS\\DSP\\Include\r\n-IC:\\Users\\bacr\\.platformio\\packages\\framework-cmsis\\CMSIS\\DSP\\PrivateInclude\r\n-IC:\\Users\\bacr\\.platformio\\packages\\framework-arduinoststm32\\cores\\arduino\r\n-IC:\\Users\\bacr\\.platformio\\packages\\framework-arduinoststm32\\variants\\STM32G4xx\\G473R(B-C-E)T_G474R(B-C-E)T_G483RET_G484RET\r\n-c\r\n-o\r\n.pio\\build\\nucleo_g474re\\FrameworkArduino\\stm32\\startup_stm32yyxx.S.o\r\nC:\\Users\\bacr\\.platformio\\packages\\framework-arduinoststm32\\cores\\arduino\\stm32\\startup_stm32yyxx.S\r\n<\/pre>\n<h3>Nucleo F072RB<\/h3>\n<pre class=\"brush: plain; collapse: true; light: false; title: .platformio\/packages\/framework-arduinoststm32\/cores\/arduino\/stm32\/startup_stm32yyxx.S -&gt; stm32_def_build.h -&gt; startup_stm32f072xb.s; toolbar: true; notranslate\" title=\".platformio\/packages\/framework-arduinoststm32\/cores\/arduino\/stm32\/startup_stm32yyxx.S -&gt; stm32_def_build.h -&gt; startup_stm32f072xb.s\">\r\n&#x5B;...]\r\n#if !defined(CMSIS_STARTUP_FILE) &amp;&amp; !defined(CUSTOM_STARTUP_FILE)\r\n  &#x5B;...]\r\n  #elif defined(STM32F072xB)\r\n    #define CMSIS_STARTUP_FILE &quot;startup_stm32f072xb.s&quot;\r\n  &#x5B;...]\r\n<\/pre>\n<pre class=\"brush: plain; collapse: true; light: false; title: C++ Compile; toolbar: true; notranslate\" title=\"C++ Compile\">\r\nBuilding in debug mode\r\n.platformio\\packages\\framework-arduinoststm32\\variants\\NUCLEO_F072RB\\PeripheralPins.c\r\n.platformio\\packages\\framework-arduinoststm32\\variants\\NUCLEO_F072RB\\variant.cpp\r\n.platformio\\packages\\framework-arduinoststm32\\cores\\arduino\\HardwareSerial.cpp\r\n.platformio\\packages\\framework-arduinoststm32\\cores\\arduino\\HardwareTimer.cpp\r\n.platformio\\packages\\framework-arduinoststm32\\cores\\arduino\\IPAddress.cpp\r\n.platformio\\packages\\framework-arduinoststm32\\cores\\arduino\\Print.cpp\r\n.platformio\\packages\\framework-arduinoststm32\\cores\\arduino\\RingBuffer.cpp\r\n.platformio\\packages\\framework-arduinoststm32\\cores\\arduino\\Stream.cpp\r\n.platformio\\packages\\framework-arduinoststm32\\cores\\arduino\\Tone.cpp\r\n.platformio\\packages\\framework-arduinoststm32\\cores\\arduino\\USBSerial.cpp\r\n.platformio\\packages\\framework-arduinoststm32\\cores\\arduino\\VirtIOSerial.cpp\r\n.platformio\\packages\\framework-arduinoststm32\\cores\\arduino\\WInterrupts.cpp\r\n.platformio\\packages\\framework-arduinoststm32\\cores\\arduino\\WMath.cpp\r\n.platformio\\packages\\framework-arduinoststm32\\cores\\arduino\\WSerial.cpp\r\n.platformio\\packages\\framework-arduinoststm32\\cores\\arduino\\WString.cpp\r\n.platformio\\packages\\framework-arduinoststm32\\cores\\arduino\\abi.cpp\r\n.platformio\\packages\\framework-arduinoststm32\\cores\\arduino\\avr\\dtostrf.c\r\n.platformio\\packages\\framework-arduinoststm32\\cores\\arduino\\board.c\r\n.platformio\\packages\\framework-arduinoststm32\\cores\\arduino\\hooks.c\r\n.platformio\\packages\\framework-arduinoststm32\\cores\\arduino\\itoa.c\r\n.platformio\\packages\\framework-arduinoststm32\\cores\\arduino\\main.cpp\r\n.platformio\\packages\\framework-arduinoststm32\\cores\\arduino\\new.cpp\r\n.platformio\\packages\\framework-arduinoststm32\\cores\\arduino\\pins_arduino.c\r\n.platformio\\packages\\framework-arduinoststm32\\cores\\arduino\\stm32\\OpenAMP\\libmetal\\device.c\r\n.platformio\\packages\\framework-arduinoststm32\\cores\\arduino\\stm32\\OpenAMP\\libmetal\\generic\\condition.c\r\n.platformio\\packages\\framework-arduinoststm32\\cores\\arduino\\stm32\\OpenAMP\\libmetal\\generic\\cortexm\\sys.c\r\n.platformio\\packages\\framework-arduinoststm32\\cores\\arduino\\stm32\\OpenAMP\\libmetal\\generic\\generic_device.c\r\n.platformio\\packages\\framework-arduinoststm32\\cores\\arduino\\stm32\\OpenAMP\\libmetal\\generic\\generic_init.c\r\n.platformio\\packages\\framework-arduinoststm32\\cores\\arduino\\stm32\\OpenAMP\\libmetal\\generic\\generic_io.c\r\n.platformio\\packages\\framework-arduinoststm32\\cores\\arduino\\stm32\\OpenAMP\\libmetal\\generic\\generic_shmem.c\r\n.platformio\\packages\\framework-arduinoststm32\\cores\\arduino\\stm32\\OpenAMP\\libmetal\\generic\\time.c\r\n.platformio\\packages\\framework-arduinoststm32\\cores\\arduino\\stm32\\OpenAMP\\libmetal\\init.c\r\n.platformio\\packages\\framework-arduinoststm32\\cores\\arduino\\stm32\\OpenAMP\\libmetal\\io.c\r\n.platformio\\packages\\framework-arduinoststm32\\cores\\arduino\\stm32\\OpenAMP\\libmetal\\log.c\r\n.platformio\\packages\\framework-arduinoststm32\\cores\\arduino\\stm32\\OpenAMP\\libmetal\\shmem.c\r\n.platformio\\packages\\framework-arduinoststm32\\cores\\arduino\\stm32\\OpenAMP\\mbox_ipcc.c\r\n.platformio\\packages\\framework-arduinoststm32\\cores\\arduino\\stm32\\OpenAMP\\open-amp\\remoteproc\\remoteproc_virtio.c\r\n.platformio\\packages\\framework-arduinoststm32\\cores\\arduino\\stm32\\OpenAMP\\open-amp\\rpmsg\\rpmsg.c\r\n.platformio\\packages\\framework-arduinoststm32\\cores\\arduino\\stm32\\OpenAMP\\open-amp\\rpmsg\\rpmsg_virtio.c\r\n.platformio\\packages\\framework-arduinoststm32\\cores\\arduino\\stm32\\OpenAMP\\openamp.c\r\n.platformio\\packages\\framework-arduinoststm32\\cores\\arduino\\stm32\\OpenAMP\\rsc_table.c\r\n.platformio\\packages\\framework-arduinoststm32\\cores\\arduino\\stm32\\OpenAMP\\virt_uart.c\r\n.platformio\\packages\\framework-arduinoststm32\\cores\\arduino\\stm32\\OpenAMP\\virtio\\virtio.c\r\n.platformio\\packages\\framework-arduinoststm32\\cores\\arduino\\stm32\\OpenAMP\\virtio\\virtqueue.c\r\n.platformio\\packages\\framework-arduinoststm32\\cores\\arduino\\stm32\\OpenAMP\\virtio_buffer.c\r\n.platformio\\packages\\framework-arduinoststm32\\cores\\arduino\\stm32\\OpenAMP\\virtio_log.c\r\n.platformio\\packages\\framework-arduinoststm32\\cores\\arduino\\stm32\\startup_stm32yyxx.S\r\n.platformio\\packages\\framework-arduinoststm32\\cores\\arduino\\stm32\\usb\\cdc\\cdc_queue.c\r\n.platformio\\packages\\framework-arduinoststm32\\cores\\arduino\\stm32\\usb\\cdc\\usbd_cdc.c\r\n.platformio\\packages\\framework-arduinoststm32\\cores\\arduino\\stm32\\usb\\cdc\\usbd_cdc_if.c\r\n.platformio\\packages\\framework-arduinoststm32\\cores\\arduino\\stm32\\usb\\hid\\usbd_hid_composite.c\r\n.platformio\\packages\\framework-arduinoststm32\\cores\\arduino\\stm32\\usb\\hid\\usbd_hid_composite_if.c\r\n.platformio\\packages\\framework-arduinoststm32\\cores\\arduino\\stm32\\usb\\usb_device_core.c\r\n.platformio\\packages\\framework-arduinoststm32\\cores\\arduino\\stm32\\usb\\usb_device_ctlreq.c\r\n.platformio\\packages\\framework-arduinoststm32\\cores\\arduino\\stm32\\usb\\usb_device_ioreq.c\r\n.platformio\\packages\\framework-arduinoststm32\\cores\\arduino\\stm32\\usb\\usbd_conf.c\r\n.platformio\\packages\\framework-arduinoststm32\\cores\\arduino\\stm32\\usb\\usbd_desc.c\r\n.platformio\\packages\\framework-arduinoststm32\\cores\\arduino\\stm32\\usb\\usbd_ep_conf.c\r\n.platformio\\packages\\framework-arduinoststm32\\cores\\arduino\\stm32\\usb\\usbd_if.c\r\n.platformio\\packages\\framework-arduinoststm32\\cores\\arduino\\wiring_analog.c\r\n.platformio\\packages\\framework-arduinoststm32\\cores\\arduino\\wiring_digital.c\r\n.platformio\\packages\\framework-arduinoststm32\\cores\\arduino\\wiring_pulse.cpp\r\n.platformio\\packages\\framework-arduinoststm32\\cores\\arduino\\wiring_shift.c\r\n.platformio\\packages\\framework-arduinoststm32\\cores\\arduino\\wiring_time.c\r\n.platformio\\packages\\framework-arduinoststm32\\libraries\\SrcWrapper\\src\\HAL\\stm32yyxx_hal.c\r\n.platformio\\packages\\framework-arduinoststm32\\libraries\\SrcWrapper\\src\\HAL\\stm32yyxx_hal_adc.c\r\n.platformio\\packages\\framework-arduinoststm32\\libraries\\SrcWrapper\\src\\HAL\\stm32yyxx_hal_adc_ex.c\r\n.platformio\\packages\\framework-arduinoststm32\\libraries\\SrcWrapper\\src\\HAL\\stm32yyxx_hal_can.c\r\n.platformio\\packages\\framework-arduinoststm32\\libraries\\SrcWrapper\\src\\HAL\\stm32yyxx_hal_cec.c\r\n.platformio\\packages\\framework-arduinoststm32\\libraries\\SrcWrapper\\src\\HAL\\stm32yyxx_hal_comp.c\r\n.platformio\\packages\\framework-arduinoststm32\\libraries\\SrcWrapper\\src\\HAL\\stm32yyxx_hal_comp_ex.c\r\n.platformio\\packages\\framework-arduinoststm32\\libraries\\SrcWrapper\\src\\HAL\\stm32yyxx_hal_cordic.c\r\n.platformio\\packages\\framework-arduinoststm32\\libraries\\SrcWrapper\\src\\HAL\\stm32yyxx_hal_cortex.c\r\n.platformio\\packages\\framework-arduinoststm32\\libraries\\SrcWrapper\\src\\HAL\\stm32yyxx_hal_crc.c\r\n.platformio\\packages\\framework-arduinoststm32\\libraries\\SrcWrapper\\src\\HAL\\stm32yyxx_hal_crc_ex.c\r\n.platformio\\packages\\framework-arduinoststm32\\libraries\\SrcWrapper\\src\\HAL\\stm32yyxx_hal_cryp.c\r\n.platformio\\packages\\framework-arduinoststm32\\libraries\\SrcWrapper\\src\\HAL\\stm32yyxx_hal_cryp_ex.c\r\n.platformio\\packages\\framework-arduinoststm32\\libraries\\SrcWrapper\\src\\HAL\\stm32yyxx_hal_dac.c\r\n.platformio\\packages\\framework-arduinoststm32\\libraries\\SrcWrapper\\src\\HAL\\stm32yyxx_hal_dac_ex.c\r\n.platformio\\packages\\framework-arduinoststm32\\libraries\\SrcWrapper\\src\\HAL\\stm32yyxx_hal_dcmi.c\r\n.platformio\\packages\\framework-arduinoststm32\\libraries\\SrcWrapper\\src\\HAL\\stm32yyxx_hal_dcmi_ex.c\r\n.platformio\\packages\\framework-arduinoststm32\\libraries\\SrcWrapper\\src\\HAL\\stm32yyxx_hal_dfsdm.c\r\n.platformio\\packages\\framework-arduinoststm32\\libraries\\SrcWrapper\\src\\HAL\\stm32yyxx_hal_dfsdm_ex.c\r\n.platformio\\packages\\framework-arduinoststm32\\libraries\\SrcWrapper\\src\\HAL\\stm32yyxx_hal_dma.c\r\n.platformio\\packages\\framework-arduinoststm32\\libraries\\SrcWrapper\\src\\HAL\\stm32yyxx_hal_dma2d.c\r\n.platformio\\packages\\framework-arduinoststm32\\libraries\\SrcWrapper\\src\\HAL\\stm32yyxx_hal_dsi.c\r\n.platformio\\packages\\framework-arduinoststm32\\libraries\\SrcWrapper\\src\\HAL\\stm32yyxx_hal_dma_ex.c\r\n.platformio\\packages\\framework-arduinoststm32\\libraries\\SrcWrapper\\src\\HAL\\stm32yyxx_hal_dts.c\r\n.platformio\\packages\\framework-arduinoststm32\\libraries\\SrcWrapper\\src\\HAL\\stm32yyxx_hal_eth.c\r\n.platformio\\packages\\framework-arduinoststm32\\libraries\\SrcWrapper\\src\\HAL\\stm32yyxx_hal_eth_ex.c\r\n.platformio\\packages\\framework-arduinoststm32\\libraries\\SrcWrapper\\src\\HAL\\stm32yyxx_hal_fdcan.c\r\n.platformio\\packages\\framework-arduinoststm32\\libraries\\SrcWrapper\\src\\HAL\\stm32yyxx_hal_exti.c\r\n.platformio\\packages\\framework-arduinoststm32\\libraries\\SrcWrapper\\src\\HAL\\stm32yyxx_hal_firewall.c\r\n.platformio\\packages\\framework-arduinoststm32\\libraries\\SrcWrapper\\src\\HAL\\stm32yyxx_hal_flash.c\r\n.platformio\\packages\\framework-arduinoststm32\\libraries\\SrcWrapper\\src\\HAL\\stm32yyxx_hal_flash_ex.c\r\n.platformio\\packages\\framework-arduinoststm32\\libraries\\SrcWrapper\\src\\HAL\\stm32yyxx_hal_flash_ramfunc.c\r\n.platformio\\packages\\framework-arduinoststm32\\libraries\\SrcWrapper\\src\\HAL\\stm32yyxx_hal_fmac.c\r\n.platformio\\packages\\framework-arduinoststm32\\libraries\\SrcWrapper\\src\\HAL\\stm32yyxx_hal_fmpi2c.c\r\n.platformio\\packages\\framework-arduinoststm32\\libraries\\SrcWrapper\\src\\HAL\\stm32yyxx_hal_fmpi2c_ex.c\r\n.platformio\\packages\\framework-arduinoststm32\\libraries\\SrcWrapper\\src\\HAL\\stm32yyxx_hal_gfxmmu.c\r\n.platformio\\packages\\framework-arduinoststm32\\libraries\\SrcWrapper\\src\\HAL\\stm32yyxx_hal_gpio.c\r\n.platformio\\packages\\framework-arduinoststm32\\libraries\\SrcWrapper\\src\\HAL\\stm32yyxx_hal_gpio_ex.c\r\n.platformio\\packages\\framework-arduinoststm32\\libraries\\SrcWrapper\\src\\HAL\\stm32yyxx_hal_hash_ex.c\r\n.platformio\\packages\\framework-arduinoststm32\\libraries\\SrcWrapper\\src\\HAL\\stm32yyxx_hal_hash.c\r\n.platformio\\packages\\framework-arduinoststm32\\libraries\\SrcWrapper\\src\\HAL\\stm32yyxx_hal_hcd.c\r\n.platformio\\packages\\framework-arduinoststm32\\libraries\\SrcWrapper\\src\\HAL\\stm32yyxx_hal_hrtim.c\r\n.platformio\\packages\\framework-arduinoststm32\\libraries\\SrcWrapper\\src\\HAL\\stm32yyxx_hal_hsem.c\r\n.platformio\\packages\\framework-arduinoststm32\\libraries\\SrcWrapper\\src\\HAL\\stm32yyxx_hal_i2c.c\r\n.platformio\\packages\\framework-arduinoststm32\\libraries\\SrcWrapper\\src\\HAL\\stm32yyxx_hal_i2c_ex.c\r\n.platformio\\packages\\framework-arduinoststm32\\libraries\\SrcWrapper\\src\\HAL\\stm32yyxx_hal_i2s.c\r\n.platformio\\packages\\framework-arduinoststm32\\libraries\\SrcWrapper\\src\\HAL\\stm32yyxx_hal_i2s_ex.c\r\n.platformio\\packages\\framework-arduinoststm32\\libraries\\SrcWrapper\\src\\HAL\\stm32yyxx_hal_ipcc.c\r\n.platformio\\packages\\framework-arduinoststm32\\libraries\\SrcWrapper\\src\\HAL\\stm32yyxx_hal_irda.c\r\n.platformio\\packages\\framework-arduinoststm32\\libraries\\SrcWrapper\\src\\HAL\\stm32yyxx_hal_iwdg.c\r\n.platformio\\packages\\framework-arduinoststm32\\libraries\\SrcWrapper\\src\\HAL\\stm32yyxx_hal_jpeg.c\r\n.platformio\\packages\\framework-arduinoststm32\\libraries\\SrcWrapper\\src\\HAL\\stm32yyxx_hal_lcd.c\r\n.platformio\\packages\\framework-arduinoststm32\\libraries\\SrcWrapper\\src\\HAL\\stm32yyxx_hal_lptim.c\r\n.platformio\\packages\\framework-arduinoststm32\\libraries\\SrcWrapper\\src\\HAL\\stm32yyxx_hal_ltdc_ex.c\r\n.platformio\\packages\\framework-arduinoststm32\\libraries\\SrcWrapper\\src\\HAL\\stm32yyxx_hal_ltdc.c\r\n.platformio\\packages\\framework-arduinoststm32\\libraries\\SrcWrapper\\src\\HAL\\stm32yyxx_hal_mdma.c\r\n.platformio\\packages\\framework-arduinoststm32\\libraries\\SrcWrapper\\src\\HAL\\stm32yyxx_hal_mdios.c\r\n.platformio\\packages\\framework-arduinoststm32\\libraries\\SrcWrapper\\src\\HAL\\stm32yyxx_hal_mmc_ex.c\r\n.platformio\\packages\\framework-arduinoststm32\\libraries\\SrcWrapper\\src\\HAL\\stm32yyxx_hal_mmc.c\r\n.platformio\\packages\\framework-arduinoststm32\\libraries\\SrcWrapper\\src\\HAL\\stm32yyxx_hal_nor.c\r\n.platformio\\packages\\framework-arduinoststm32\\libraries\\SrcWrapper\\src\\HAL\\stm32yyxx_hal_nand.c\r\n.platformio\\packages\\framework-arduinoststm32\\libraries\\SrcWrapper\\src\\HAL\\stm32yyxx_hal_opamp.c\r\n.platformio\\packages\\framework-arduinoststm32\\libraries\\SrcWrapper\\src\\HAL\\stm32yyxx_hal_opamp_ex.c\r\n.platformio\\packages\\framework-arduinoststm32\\libraries\\SrcWrapper\\src\\HAL\\stm32yyxx_hal_ospi.c\r\n.platformio\\packages\\framework-arduinoststm32\\libraries\\SrcWrapper\\src\\HAL\\stm32yyxx_hal_otfdec.c\r\n.platformio\\packages\\framework-arduinoststm32\\libraries\\SrcWrapper\\src\\HAL\\stm32yyxx_hal_pccard.c\r\n.platformio\\packages\\framework-arduinoststm32\\libraries\\SrcWrapper\\src\\HAL\\stm32yyxx_hal_pcd.c\r\n.platformio\\packages\\framework-arduinoststm32\\libraries\\SrcWrapper\\src\\HAL\\stm32yyxx_hal_pcd_ex.c\r\n.platformio\\packages\\framework-arduinoststm32\\libraries\\SrcWrapper\\src\\HAL\\stm32yyxx_hal_pssi.c\r\n.platformio\\packages\\framework-arduinoststm32\\libraries\\SrcWrapper\\src\\HAL\\stm32yyxx_hal_pka.c\r\n.platformio\\packages\\framework-arduinoststm32\\libraries\\SrcWrapper\\src\\HAL\\stm32yyxx_hal_pwr_ex.c\r\n.platformio\\packages\\framework-arduinoststm32\\libraries\\SrcWrapper\\src\\HAL\\stm32yyxx_hal_pwr.c\r\n.platformio\\packages\\framework-arduinoststm32\\libraries\\SrcWrapper\\src\\HAL\\stm32yyxx_hal_qspi.c\r\n.platformio\\packages\\framework-arduinoststm32\\libraries\\SrcWrapper\\src\\HAL\\stm32yyxx_hal_ramecc.c\r\n.platformio\\packages\\framework-arduinoststm32\\libraries\\SrcWrapper\\src\\HAL\\stm32yyxx_hal_rcc.c\r\n.platformio\\packages\\framework-arduinoststm32\\libraries\\SrcWrapper\\src\\HAL\\stm32yyxx_hal_rng.c\r\n.platformio\\packages\\framework-arduinoststm32\\libraries\\SrcWrapper\\src\\HAL\\stm32yyxx_hal_rcc_ex.c\r\n.platformio\\packages\\framework-arduinoststm32\\libraries\\SrcWrapper\\src\\HAL\\stm32yyxx_hal_rng_ex.c\r\n.platformio\\packages\\framework-arduinoststm32\\libraries\\SrcWrapper\\src\\HAL\\stm32yyxx_hal_rtc.c\r\n.platformio\\packages\\framework-arduinoststm32\\libraries\\SrcWrapper\\src\\HAL\\stm32yyxx_hal_rtc_ex.c\r\n.platformio\\packages\\framework-arduinoststm32\\libraries\\SrcWrapper\\src\\HAL\\stm32yyxx_hal_sai.c\r\n.platformio\\packages\\framework-arduinoststm32\\libraries\\SrcWrapper\\src\\HAL\\stm32yyxx_hal_sai_ex.c\r\n.platformio\\packages\\framework-arduinoststm32\\libraries\\SrcWrapper\\src\\HAL\\stm32yyxx_hal_sd.c\r\n.platformio\\packages\\framework-arduinoststm32\\libraries\\SrcWrapper\\src\\HAL\\stm32yyxx_hal_sd_ex.c\r\n.platformio\\packages\\framework-arduinoststm32\\libraries\\SrcWrapper\\src\\HAL\\stm32yyxx_hal_sdadc.c\r\n.platformio\\packages\\framework-arduinoststm32\\libraries\\SrcWrapper\\src\\HAL\\stm32yyxx_hal_smartcard.c\r\n.platformio\\packages\\framework-arduinoststm32\\libraries\\SrcWrapper\\src\\HAL\\stm32yyxx_hal_sdram.c\r\n.platformio\\packages\\framework-arduinoststm32\\libraries\\SrcWrapper\\src\\HAL\\stm32yyxx_hal_smbus.c\r\n.platformio\\packages\\framework-arduinoststm32\\libraries\\SrcWrapper\\src\\HAL\\stm32yyxx_hal_smartcard_ex.c\r\n.platformio\\packages\\framework-arduinoststm32\\libraries\\SrcWrapper\\src\\HAL\\stm32yyxx_hal_spdifrx.c\r\n.platformio\\packages\\framework-arduinoststm32\\libraries\\SrcWrapper\\src\\HAL\\stm32yyxx_hal_spi.c\r\n.platformio\\packages\\framework-arduinoststm32\\libraries\\SrcWrapper\\src\\HAL\\stm32yyxx_hal_spi_ex.c\r\n.platformio\\packages\\framework-arduinoststm32\\libraries\\SrcWrapper\\src\\HAL\\stm32yyxx_hal_sram.c\r\n.platformio\\packages\\framework-arduinoststm32\\libraries\\SrcWrapper\\src\\HAL\\stm32yyxx_hal_swpmi.c\r\n.platformio\\packages\\framework-arduinoststm32\\libraries\\SrcWrapper\\src\\HAL\\stm32yyxx_hal_tim.c\r\n.platformio\\packages\\framework-arduinoststm32\\libraries\\SrcWrapper\\src\\HAL\\stm32yyxx_hal_tim_ex.c\r\n.platformio\\packages\\framework-arduinoststm32\\libraries\\SrcWrapper\\src\\HAL\\stm32yyxx_hal_uart.c\r\n.platformio\\packages\\framework-arduinoststm32\\libraries\\SrcWrapper\\src\\HAL\\stm32yyxx_hal_tsc.c\r\n.platformio\\packages\\framework-arduinoststm32\\libraries\\SrcWrapper\\src\\HAL\\stm32yyxx_hal_uart_ex.c\r\n.platformio\\packages\\framework-arduinoststm32\\libraries\\SrcWrapper\\src\\HAL\\stm32yyxx_hal_usart.c\r\n.platformio\\packages\\framework-arduinoststm32\\libraries\\SrcWrapper\\src\\HAL\\stm32yyxx_hal_usart_ex.c\r\n.platformio\\packages\\framework-arduinoststm32\\libraries\\SrcWrapper\\src\\HAL\\stm32yyxx_hal_wwdg.c\r\n.platformio\\packages\\framework-arduinoststm32\\libraries\\SrcWrapper\\src\\LL\\stm32yyxx_ll_bdma.c\r\n.platformio\\packages\\framework-arduinoststm32\\libraries\\SrcWrapper\\src\\LL\\stm32yyxx_ll_adc.c\r\n.platformio\\packages\\framework-arduinoststm32\\libraries\\SrcWrapper\\src\\LL\\stm32yyxx_ll_cordic.c\r\n.platformio\\packages\\framework-arduinoststm32\\libraries\\SrcWrapper\\src\\LL\\stm32yyxx_ll_comp.c\r\n.platformio\\packages\\framework-arduinoststm32\\libraries\\SrcWrapper\\src\\LL\\stm32yyxx_ll_crc.c\r\n.platformio\\packages\\framework-arduinoststm32\\libraries\\SrcWrapper\\src\\LL\\stm32yyxx_ll_crs.c\r\n.platformio\\packages\\framework-arduinoststm32\\libraries\\SrcWrapper\\src\\LL\\stm32yyxx_ll_dac.c\r\n.platformio\\packages\\framework-arduinoststm32\\libraries\\SrcWrapper\\src\\LL\\stm32yyxx_ll_delayblock.c\r\n.platformio\\packages\\framework-arduinoststm32\\libraries\\SrcWrapper\\src\\LL\\stm32yyxx_ll_dma.c\r\n.platformio\\packages\\framework-arduinoststm32\\libraries\\SrcWrapper\\src\\LL\\stm32yyxx_ll_dma2d.c\r\n.platformio\\packages\\framework-arduinoststm32\\libraries\\SrcWrapper\\src\\LL\\stm32yyxx_ll_exti.c\r\n.platformio\\packages\\framework-arduinoststm32\\libraries\\SrcWrapper\\src\\LL\\stm32yyxx_ll_fmc.c\r\n.platformio\\packages\\framework-arduinoststm32\\libraries\\SrcWrapper\\src\\LL\\stm32yyxx_ll_fmac.c\r\n.platformio\\packages\\framework-arduinoststm32\\libraries\\SrcWrapper\\src\\LL\\stm32yyxx_ll_gpio.c\r\n.platformio\\packages\\framework-arduinoststm32\\libraries\\SrcWrapper\\src\\LL\\stm32yyxx_ll_fsmc.c\r\n.platformio\\packages\\framework-arduinoststm32\\libraries\\SrcWrapper\\src\\LL\\stm32yyxx_ll_hrtim.c\r\n.platformio\\packages\\framework-arduinoststm32\\libraries\\SrcWrapper\\src\\LL\\stm32yyxx_ll_i2c.c\r\n.platformio\\packages\\framework-arduinoststm32\\libraries\\SrcWrapper\\src\\LL\\stm32yyxx_ll_lptim.c\r\n.platformio\\packages\\framework-arduinoststm32\\libraries\\SrcWrapper\\src\\LL\\stm32yyxx_ll_mdma.c\r\n.platformio\\packages\\framework-arduinoststm32\\libraries\\SrcWrapper\\src\\LL\\stm32yyxx_ll_lpuart.c\r\n.platformio\\packages\\framework-arduinoststm32\\libraries\\SrcWrapper\\src\\LL\\stm32yyxx_ll_opamp.c\r\n.platformio\\packages\\framework-arduinoststm32\\libraries\\SrcWrapper\\src\\LL\\stm32yyxx_ll_pka.c\r\n.platformio\\packages\\framework-arduinoststm32\\libraries\\SrcWrapper\\src\\LL\\stm32yyxx_ll_pwr.c\r\n.platformio\\packages\\framework-arduinoststm32\\libraries\\SrcWrapper\\src\\LL\\stm32yyxx_ll_rcc.c\r\n.platformio\\packages\\framework-arduinoststm32\\libraries\\SrcWrapper\\src\\LL\\stm32yyxx_ll_rng.c\r\n.platformio\\packages\\framework-arduinoststm32\\libraries\\SrcWrapper\\src\\LL\\stm32yyxx_ll_sdmmc.c\r\n.platformio\\packages\\framework-arduinoststm32\\libraries\\SrcWrapper\\src\\LL\\stm32yyxx_ll_rtc.c\r\n.platformio\\packages\\framework-arduinoststm32\\libraries\\SrcWrapper\\src\\LL\\stm32yyxx_ll_swpmi.c\r\n.platformio\\packages\\framework-arduinoststm32\\libraries\\SrcWrapper\\src\\LL\\stm32yyxx_ll_spi.c\r\n.platformio\\packages\\framework-arduinoststm32\\libraries\\SrcWrapper\\src\\LL\\stm32yyxx_ll_ucpd.c\r\n.platformio\\packages\\framework-arduinoststm32\\libraries\\SrcWrapper\\src\\LL\\stm32yyxx_ll_tim.c\r\n.platformio\\packages\\framework-arduinoststm32\\libraries\\SrcWrapper\\src\\LL\\stm32yyxx_ll_usb.c\r\n.platformio\\packages\\framework-arduinoststm32\\libraries\\SrcWrapper\\src\\LL\\stm32yyxx_ll_usart.c\r\n.platformio\\packages\\framework-arduinoststm32\\libraries\\SrcWrapper\\src\\stm32\\PortNames.c\r\n.platformio\\packages\\framework-arduinoststm32\\libraries\\SrcWrapper\\src\\LL\\stm32yyxx_ll_utils.c\r\n.platformio\\packages\\framework-arduinoststm32\\libraries\\SrcWrapper\\src\\stm32\\analog.cpp\r\n.platformio\\packages\\framework-arduinoststm32\\libraries\\SrcWrapper\\src\\stm32\\bootloader.c\r\n.platformio\\packages\\framework-arduinoststm32\\libraries\\SrcWrapper\\src\\stm32\\clock.c\r\n.platformio\\packages\\framework-arduinoststm32\\libraries\\SrcWrapper\\src\\stm32\\core_callback.c\r\n.platformio\\packages\\framework-arduinoststm32\\libraries\\SrcWrapper\\src\\stm32\\dwt.c\r\n.platformio\\packages\\framework-arduinoststm32\\libraries\\SrcWrapper\\src\\stm32\\hw_config.c\r\n.platformio\\packages\\framework-arduinoststm32\\libraries\\SrcWrapper\\src\\stm32\\interrupt.cpp\r\n.platformio\\packages\\framework-arduinoststm32\\libraries\\SrcWrapper\\src\\stm32\\lock_resource.c\r\n.platformio\\packages\\framework-arduinoststm32\\libraries\\SrcWrapper\\src\\stm32\\pinmap.c\r\n.platformio\\packages\\framework-arduinoststm32\\libraries\\SrcWrapper\\src\\stm32\\low_power.c\r\n.platformio\\packages\\framework-arduinoststm32\\libraries\\SrcWrapper\\src\\stm32\\rtc.c\r\n.platformio\\packages\\framework-arduinoststm32\\libraries\\SrcWrapper\\src\\stm32\\stm32_def.c\r\n.platformio\\packages\\framework-arduinoststm32\\libraries\\SrcWrapper\\src\\stm32\\stm32_eeprom.c\r\n.platformio\\packages\\framework-arduinoststm32\\libraries\\SrcWrapper\\src\\stm32\\system_stm32yyxx.c\r\n.platformio\\packages\\framework-arduinoststm32\\libraries\\SrcWrapper\\src\\stm32\\timer.c\r\n.platformio\\packages\\framework-arduinoststm32\\libraries\\SrcWrapper\\src\\stm32\\uart.c\r\n.platformio\\packages\\framework-arduinoststm32\\libraries\\SrcWrapper\\src\\syscalls.c\r\nsrc\\main.cpp\r\n<\/pre>\n<h3>Nucleo G071RB<\/h3>\n<pre class=\"brush: plain; collapse: true; light: false; title: C++ Compile; toolbar: true; notranslate\" title=\"C++ Compile\">\r\narm-none-eabi-gcc\r\n-o .pio\\build\\nucleo_g071rb\\FrameworkArduinoVariant\\PeripheralPins.c.o\r\n-c -std=gnu11 -Os\r\n-mcpu=cortex-m0plus -mthumb -ffunction-sections -fdata-sections -Wall -nostdlib --param max-inline-insns-single=500\r\n-DPLATFORMIO=50100 -DSTM32G0xx -DSTM32G071xx -DSTM32G0xx -DARDUINO=10808\r\n-DARDUINO_ARCH_STM32 -DARDUINO_NUCLEO_G071RB -DBOARD_NAME=\\&quot;NUCLEO_G071RB\\&quot;\r\n-DHAL_UART_MODULE_ENABLED -D__CORTEX_SC=0\r\n-IC:\\Users\\andreas\\.platformio\\packages\\framework-arduinoststm32\\cores\\arduino\\avr \r\n-IC:\\Users\\andreas\\.platformio\\packages\\framework-arduinoststm32\\cores\\arduino\\stm32 \r\n-IC:\\Users\\andreas\\.platformio\\packages\\framework-arduinoststm32\\cores\\arduino\\stm32\\LL \r\n-IC:\\Users\\andreas\\.platformio\\packages\\framework-arduinoststm32\\cores\\arduino\\stm32\\usb \r\n-IC:\\Users\\andreas\\.platformio\\packages\\framework-arduinoststm32\\cores\\arduino\\stm32\\OpenAMP \r\n-IC:\\Users\\andreas\\.platformio\\packages\\framework-arduinoststm32\\cores\\arduino\\stm32\\usb\\hid \r\n-IC:\\Users\\andreas\\.platformio\\packages\\framework-arduinoststm32\\cores\\arduino\\stm32\\usb\\cdc \r\n-IC:\\Users\\andreas\\.platformio\\packages\\framework-arduinoststm32\\system\\Drivers\\STM32G0xx_HAL_Driver\\Inc \r\n-IC:\\Users\\andreas\\.platformio\\packages\\framework-arduinoststm32\\system\\Drivers\\STM32G0xx_HAL_Driver\\Src \r\n-IC:\\Users\\andreas\\.platformio\\packages\\framework-arduinoststm32\\system\\STM32G0xx \r\n-IC:\\Users\\andreas\\.platformio\\packages\\framework-arduinoststm32\\system\\Middlewares\\ST\\STM32_USB_Device_Library\\Core\\Inc \r\n-IC:\\Users\\andreas\\.platformio\\packages\\framework-arduinoststm32\\system\\Middlewares\\ST\\STM32_USB_Device_Library\\Core\\Src \r\n-IC:\\Users\\andreas\\.platformio\\packages\\framework-arduinoststm32\\system\\Middlewares\\OpenAMP \r\n-IC:\\Users\\andreas\\.platformio\\packages\\framework-arduinoststm32\\system\\Middlewares\\OpenAMP\\open-amp\\lib\\include \r\n-IC:\\Users\\andreas\\.platformio\\packages\\framework-arduinoststm32\\system\\Middlewares\\OpenAMP\\libmetal\\lib\\include \r\n-IC:\\Users\\andreas\\.platformio\\packages\\framework-arduinoststm32\\system\\Middlewares\\OpenAMP\\virtual_driver \r\n-IC:\\Users\\andreas\\.platformio\\packages\\framework-cmsis\\CMSIS\\Core\\Include \r\n-IC:\\Users\\andreas\\.platformio\\packages\\framework-arduinoststm32\\system\\Drivers\\CMSIS\\Device\\ST\\STM32G0xx\\Include \r\n-IC:\\Users\\andreas\\.platformio\\packages\\framework-arduinoststm32\\system\\Drivers\\CMSIS\\Device\\ST\\STM32G0xx\\Source\\Templates\\gcc \r\n-IC:\\Users\\andreas\\.platformio\\packages\\framework-cmsis\\CMSIS\\DSP\\Include \r\n-IC:\\Users\\andreas\\.platformio\\packages\\framework-arduinoststm32\\cores\\arduino \r\n-IC:\\Users\\andreas\\.platformio\\packages\\framework-arduinoststm32\\variants\\NUCLEO_G071RB \r\n-IC:\\Users\\andreas\\.platformio\\packages\\framework-arduinoststm32\\variants\\NUCLEO_G071RB\r\nC:\\Users\\andreas\\.platformio\\packages\\framework-arduinoststm32\\variants\\NUCLEO_G071RB\\PeripheralPins.c\r\n\r\n&#x5B;...]\r\n\r\narm-none-eabi-gcc\r\n-o .pio\\build\\nucleo_g071rb\\SrcWrapper\\src\\HAL\\stm32yyxx_hal_smartcard_ex.c.o\r\n-c -std=gnu11 -Os\r\n-mcpu=cortex-m0plus -mthumb -ffunction-sections -fdata-sections -Wall -nostdlib --param max-inline-insns-single=500\r\n-DPLATFORMIO=50100 -DSTM32G0xx -DSTM32G071xx -DSTM32G0xx -DARDUINO=10808\r\n-DARDUINO_ARCH_STM32 -DARDUINO_NUCLEO_G071RB -DBOARD_NAME=\\&quot;NUCLEO_G071RB\\&quot;\r\n-DHAL_UART_MODULE_ENABLED -D__CORTEX_SC=0\r\n-IC:\\Users\\andreas\\.platformio\\packages\\framework-arduinoststm32\\cores\\arduino\\avr\r\n-IC:\\Users\\andreas\\.platformio\\packages\\framework-arduinoststm32\\cores\\arduino\\stm32\r\n-IC:\\Users\\andreas\\.platformio\\packages\\framework-arduinoststm32\\cores\\arduino\\stm32\\LL\r\n-IC:\\Users\\andreas\\.platformio\\packages\\framework-arduinoststm32\\cores\\arduino\\stm32\\usb\r\n-IC:\\Users\\andreas\\.platformio\\packages\\framework-arduinoststm32\\cores\\arduino\\stm32\\OpenAMP\r\n-IC:\\Users\\andreas\\.platformio\\packages\\framework-arduinoststm32\\cores\\arduino\\stm32\\usb\\hid\r\n-IC:\\Users\\andreas\\.platformio\\packages\\framework-arduinoststm32\\cores\\arduino\\stm32\\usb\\cdc\r\n-IC:\\Users\\andreas\\.platformio\\packages\\framework-arduinoststm32\\system\\Drivers\\STM32G0xx_HAL_Driver\\Inc\r\n-IC:\\Users\\andreas\\.platformio\\packages\\framework-arduinoststm32\\system\\Drivers\\STM32G0xx_HAL_Driver\\Src\r\n-IC:\\Users\\andreas\\.platformio\\packages\\framework-arduinoststm32\\system\\STM32G0xx\r\n-IC:\\Users\\andreas\\.platformio\\packages\\framework-arduinoststm32\\system\\Middlewares\\ST\\STM32_USB_Device_Library\\Core\\Inc\r\n-IC:\\Users\\andreas\\.platformio\\packages\\framework-arduinoststm32\\system\\Middlewares\\ST\\STM32_USB_Device_Library\\Core\\Src\r\n-IC:\\Users\\andreas\\.platformio\\packages\\framework-arduinoststm32\\system\\Middlewares\\OpenAMP\r\n-IC:\\Users\\andreas\\.platformio\\packages\\framework-arduinoststm32\\system\\Middlewares\\OpenAMP\\open-amp\\lib\\include\r\n-IC:\\Users\\andreas\\.platformio\\packages\\framework-arduinoststm32\\system\\Middlewares\\OpenAMP\\libmetal\\lib\\include\r\n-IC:\\Users\\andreas\\.platformio\\packages\\framework-arduinoststm32\\system\\Middlewares\\OpenAMP\\virtual_driver\r\n-IC:\\Users\\andreas\\.platformio\\packages\\framework-cmsis\\CMSIS\\Core\\Include\r\n-IC:\\Users\\andreas\\.platformio\\packages\\framework-arduinoststm32\\system\\Drivers\\CMSIS\\Device\\ST\\STM32G0xx\\Include\r\n-IC:\\Users\\andreas\\.platformio\\packages\\framework-arduinoststm32\\system\\Drivers\\CMSIS\\Device\\ST\\STM32G0xx\\Source\\Templates\\gcc\r\n-IC:\\Users\\andreas\\.platformio\\packages\\framework-cmsis\\CMSIS\\DSP\\Include\r\n-IC:\\Users\\andreas\\.platformio\\packages\\framework-arduinoststm32\\cores\\arduino\r\n-IC:\\Users\\andreas\\.platformio\\packages\\framework-arduinoststm32\\variants\\NUCLEO_G071RB\r\n-IC:\\Users\\andreas\\.platformio\\packages\\framework-arduinoststm32\\variants\\NUCLEO_G071RB\r\nC:\\Users\\andreas\\.platformio\\packages\\framework-arduinoststm32\\libraries\\SrcWrapper\\src\\HAL\\stm32yyxx_hal_smartcard_ex.c\r\n\r\n&#x5B;...]\r\n<\/pre>\n<pre class=\"brush: plain; collapse: true; light: false; title: C++ Link; toolbar: true; notranslate\" title=\"C++ Link\">\r\narm-none-eabi-g++\r\n-o .pio\/build\/nucleo_g071rb\/firmware.elf\r\n-T C:\/Users\/andreas\/.platformio\/packages\/framework-arduinoststm32\/system\/ldscript.ld\r\n-Os -mthumb -mcpu=cortex-m0plus\r\n--specs=nano.specs\r\n-Wl,--gc-sections,--relax -Wl,--check-sections -Wl,--entry=Reset_Handler\r\n-Wl,--unresolved-symbols=report-all -Wl,--warn-common -Wl,--defsym=LD_MAX_SIZE=131072\r\n-Wl,--defsym=LD_MAX_DATA_SIZE=36864 -Wl,--defsym=LD_FLASH_OFFSET=0x0\r\n-Wl,--default-script C:\/Users\/andreas\/.platformio\/packages\/framework-arduinoststm32\/variants\/NUCLEO_G071RB\/ldscript.ld\r\n.pio\/build\/nucleo_g071rb\/FrameworkArduinoVariant\/PeripheralPins.c.o\r\n.pio\/build\/nucleo_g071rb\/FrameworkArduinoVariant\/variant.cpp.o\r\n.pio\/build\/nucleo_g071rb\/FrameworkArduino\/HardwareSerial.cpp.o\r\n.pio\/build\/nucleo_g071rb\/FrameworkArduino\/HardwareTimer.cpp.o\r\n.pio\/build\/nucleo_g071rb\/FrameworkArduino\/IPAddress.cpp.o\r\n.pio\/build\/nucleo_g071rb\/FrameworkArduino\/Print.cpp.o\r\n.pio\/build\/nucleo_g071rb\/FrameworkArduino\/RingBuffer.cpp.o\r\n.pio\/build\/nucleo_g071rb\/FrameworkArduino\/Stream.cpp.o\r\n.pio\/build\/nucleo_g071rb\/FrameworkArduino\/Tone.cpp.o\r\n.pio\/build\/nucleo_g071rb\/FrameworkArduino\/USBSerial.cpp.o\r\n.pio\/build\/nucleo_g071rb\/FrameworkArduino\/VirtIOSerial.cpp.o\r\n.pio\/build\/nucleo_g071rb\/FrameworkArduino\/WInterrupts.cpp.o\r\n.pio\/build\/nucleo_g071rb\/FrameworkArduino\/WMath.cpp.o\r\n.pio\/build\/nucleo_g071rb\/FrameworkArduino\/WSerial.cpp.o\r\n.pio\/build\/nucleo_g071rb\/FrameworkArduino\/WString.cpp.o\r\n.pio\/build\/nucleo_g071rb\/FrameworkArduino\/abi.cpp.o\r\n.pio\/build\/nucleo_g071rb\/FrameworkArduino\/avr\/dtostrf.c.o\r\n.pio\/build\/nucleo_g071rb\/FrameworkArduino\/board.c.o\r\n.pio\/build\/nucleo_g071rb\/FrameworkArduino\/hooks.c.o\r\n.pio\/build\/nucleo_g071rb\/FrameworkArduino\/itoa.c.o\r\n.pio\/build\/nucleo_g071rb\/FrameworkArduino\/main.cpp.o\r\n.pio\/build\/nucleo_g071rb\/FrameworkArduino\/new.cpp.o\r\n.pio\/build\/nucleo_g071rb\/FrameworkArduino\/pins_arduino.c.o\r\n.pio\/build\/nucleo_g071rb\/FrameworkArduino\/stm32\/OpenAMP\/libmetal\/device.c.o\r\n.pio\/build\/nucleo_g071rb\/FrameworkArduino\/stm32\/OpenAMP\/libmetal\/generic\/condition.c.o\r\n.pio\/build\/nucleo_g071rb\/FrameworkArduino\/stm32\/OpenAMP\/libmetal\/generic\/cortexm\/sys.c.o\r\n.pio\/build\/nucleo_g071rb\/FrameworkArduino\/stm32\/OpenAMP\/libmetal\/generic\/generic_device.c.o\r\n.pio\/build\/nucleo_g071rb\/FrameworkArduino\/stm32\/OpenAMP\/libmetal\/generic\/generic_init.c.o\r\n.pio\/build\/nucleo_g071rb\/FrameworkArduino\/stm32\/OpenAMP\/libmetal\/generic\/generic_io.c.o\r\n.pio\/build\/nucleo_g071rb\/FrameworkArduino\/stm32\/OpenAMP\/libmetal\/generic\/generic_shmem.c.o\r\n.pio\/build\/nucleo_g071rb\/FrameworkArduino\/stm32\/OpenAMP\/libmetal\/generic\/time.c.o\r\n.pio\/build\/nucleo_g071rb\/FrameworkArduino\/stm32\/OpenAMP\/libmetal\/init.c.o\r\n.pio\/build\/nucleo_g071rb\/FrameworkArduino\/stm32\/OpenAMP\/libmetal\/io.c.o\r\n.pio\/build\/nucleo_g071rb\/FrameworkArduino\/stm32\/OpenAMP\/libmetal\/log.c.o\r\n.pio\/build\/nucleo_g071rb\/FrameworkArduino\/stm32\/OpenAMP\/libmetal\/shmem.c.o\r\n.pio\/build\/nucleo_g071rb\/FrameworkArduino\/stm32\/OpenAMP\/mbox_ipcc.c.o\r\n.pio\/build\/nucleo_g071rb\/FrameworkArduino\/stm32\/OpenAMP\/open-amp\/remoteproc\/remoteproc_virtio.c.o\r\n.pio\/build\/nucleo_g071rb\/FrameworkArduino\/stm32\/OpenAMP\/open-amp\/rpmsg\/rpmsg.c.o\r\n.pio\/build\/nucleo_g071rb\/FrameworkArduino\/stm32\/OpenAMP\/open-amp\/rpmsg\/rpmsg_virtio.c.o\r\n.pio\/build\/nucleo_g071rb\/FrameworkArduino\/stm32\/OpenAMP\/openamp.c.o\r\n.pio\/build\/nucleo_g071rb\/FrameworkArduino\/stm32\/OpenAMP\/rsc_table.c.o\r\n.pio\/build\/nucleo_g071rb\/FrameworkArduino\/stm32\/OpenAMP\/virt_uart.c.o\r\n.pio\/build\/nucleo_g071rb\/FrameworkArduino\/stm32\/OpenAMP\/virtio\/virtio.c.o\r\n.pio\/build\/nucleo_g071rb\/FrameworkArduino\/stm32\/OpenAMP\/virtio\/virtqueue.c.o\r\n.pio\/build\/nucleo_g071rb\/FrameworkArduino\/stm32\/OpenAMP\/virtio_buffer.c.o\r\n.pio\/build\/nucleo_g071rb\/FrameworkArduino\/stm32\/OpenAMP\/virtio_log.c.o\r\n.pio\/build\/nucleo_g071rb\/FrameworkArduino\/stm32\/startup_stm32yyxx.S.o\r\n.pio\/build\/nucleo_g071rb\/FrameworkArduino\/stm32\/usb\/cdc\/cdc_queue.c.o\r\n.pio\/build\/nucleo_g071rb\/FrameworkArduino\/stm32\/usb\/cdc\/usbd_cdc.c.o\r\n.pio\/build\/nucleo_g071rb\/FrameworkArduino\/stm32\/usb\/cdc\/usbd_cdc_if.c.o\r\n.pio\/build\/nucleo_g071rb\/FrameworkArduino\/stm32\/usb\/hid\/usbd_hid_composite.c.o\r\n.pio\/build\/nucleo_g071rb\/FrameworkArduino\/stm32\/usb\/hid\/usbd_hid_composite_if.c.o\r\n.pio\/build\/nucleo_g071rb\/FrameworkArduino\/stm32\/usb\/usb_device_core.c.o\r\n.pio\/build\/nucleo_g071rb\/FrameworkArduino\/stm32\/usb\/usb_device_ctlreq.c.o\r\n.pio\/build\/nucleo_g071rb\/FrameworkArduino\/stm32\/usb\/usb_device_ioreq.c.o\r\n.pio\/build\/nucleo_g071rb\/FrameworkArduino\/stm32\/usb\/usbd_conf.c.o\r\n.pio\/build\/nucleo_g071rb\/FrameworkArduino\/stm32\/usb\/usbd_desc.c.o\r\n.pio\/build\/nucleo_g071rb\/FrameworkArduino\/stm32\/usb\/usbd_ep_conf.c.o\r\n.pio\/build\/nucleo_g071rb\/FrameworkArduino\/stm32\/usb\/usbd_if.c.o \r\n.pio\/build\/nucleo_g071rb\/FrameworkArduino\/wiring_analog.c.o \r\n.pio\/build\/nucleo_g071rb\/FrameworkArduino\/wiring_digital.c.o \r\n.pio\/build\/nucleo_g071rb\/FrameworkArduino\/wiring_pulse.cpp.o \r\n.pio\/build\/nucleo_g071rb\/FrameworkArduino\/wiring_shift.c.o \r\n.pio\/build\/nucleo_g071rb\/FrameworkArduino\/wiring_time.c.o \r\n.pio\/build\/nucleo_g071rb\/SrcWrapper\/src\/HAL\/stm32yyxx_hal.c.o \r\n.pio\/build\/nucleo_g071rb\/SrcWrapper\/src\/HAL\/stm32yyxx_hal_adc.c.o \r\n.pio\/build\/nucleo_g071rb\/SrcWrapper\/src\/HAL\/stm32yyxx_hal_adc_ex.c.o \r\n.pio\/build\/nucleo_g071rb\/SrcWrapper\/src\/HAL\/stm32yyxx_hal_can.c.o \r\n.pio\/build\/nucleo_g071rb\/SrcWrapper\/src\/HAL\/stm32yyxx_hal_cec.c.o \r\n.pio\/build\/nucleo_g071rb\/SrcWrapper\/src\/HAL\/stm32yyxx_hal_comp.c.o \r\n.pio\/build\/nucleo_g071rb\/SrcWrapper\/src\/HAL\/stm32yyxx_hal_comp_ex.c.o \r\n.pio\/build\/nucleo_g071rb\/SrcWrapper\/src\/HAL\/stm32yyxx_hal_cordic.c.o \r\n.pio\/build\/nucleo_g071rb\/SrcWrapper\/src\/HAL\/stm32yyxx_hal_cortex.c.o \r\n.pio\/build\/nucleo_g071rb\/SrcWrapper\/src\/HAL\/stm32yyxx_hal_crc.c.o \r\n.pio\/build\/nucleo_g071rb\/SrcWrapper\/src\/HAL\/stm32yyxx_hal_crc_ex.c.o \r\n.pio\/build\/nucleo_g071rb\/SrcWrapper\/src\/HAL\/stm32yyxx_hal_cryp.c.o \r\n.pio\/build\/nucleo_g071rb\/SrcWrapper\/src\/HAL\/stm32yyxx_hal_cryp_ex.c.o \r\n.pio\/build\/nucleo_g071rb\/SrcWrapper\/src\/HAL\/stm32yyxx_hal_dac.c.o \r\n.pio\/build\/nucleo_g071rb\/SrcWrapper\/src\/HAL\/stm32yyxx_hal_dac_ex.c.o \r\n.pio\/build\/nucleo_g071rb\/SrcWrapper\/src\/HAL\/stm32yyxx_hal_dcmi.c.o \r\n.pio\/build\/nucleo_g071rb\/SrcWrapper\/src\/HAL\/stm32yyxx_hal_dcmi_ex.c.o \r\n.pio\/build\/nucleo_g071rb\/SrcWrapper\/src\/HAL\/stm32yyxx_hal_dfsdm.c.o \r\n.pio\/build\/nucleo_g071rb\/SrcWrapper\/src\/HAL\/stm32yyxx_hal_dfsdm_ex.c.o \r\n.pio\/build\/nucleo_g071rb\/SrcWrapper\/src\/HAL\/stm32yyxx_hal_dma.c.o \r\n.pio\/build\/nucleo_g071rb\/SrcWrapper\/src\/HAL\/stm32yyxx_hal_dma2d.c.o \r\n.pio\/build\/nucleo_g071rb\/SrcWrapper\/src\/HAL\/stm32yyxx_hal_dma_ex.c.o \r\n.pio\/build\/nucleo_g071rb\/SrcWrapper\/src\/HAL\/stm32yyxx_hal_dsi.c.o \r\n.pio\/build\/nucleo_g071rb\/SrcWrapper\/src\/HAL\/stm32yyxx_hal_dts.c.o \r\n.pio\/build\/nucleo_g071rb\/SrcWrapper\/src\/HAL\/stm32yyxx_hal_eth.c.o \r\n.pio\/build\/nucleo_g071rb\/SrcWrapper\/src\/HAL\/stm32yyxx_hal_eth_ex.c.o \r\n.pio\/build\/nucleo_g071rb\/SrcWrapper\/src\/HAL\/stm32yyxx_hal_exti.c.o \r\n.pio\/build\/nucleo_g071rb\/SrcWrapper\/src\/HAL\/stm32yyxx_hal_fdcan.c.o \r\n.pio\/build\/nucleo_g071rb\/SrcWrapper\/src\/HAL\/stm32yyxx_hal_firewall.c.o \r\n.pio\/build\/nucleo_g071rb\/SrcWrapper\/src\/HAL\/stm32yyxx_hal_flash.c.o \r\n.pio\/build\/nucleo_g071rb\/SrcWrapper\/src\/HAL\/stm32yyxx_hal_flash_ex.c.o \r\n.pio\/build\/nucleo_g071rb\/SrcWrapper\/src\/HAL\/stm32yyxx_hal_flash_ramfunc.c.o \r\n.pio\/build\/nucleo_g071rb\/SrcWrapper\/src\/HAL\/stm32yyxx_hal_fmac.c.o \r\n.pio\/build\/nucleo_g071rb\/SrcWrapper\/src\/HAL\/stm32yyxx_hal_fmpi2c.c.o \r\n.pio\/build\/nucleo_g071rb\/SrcWrapper\/src\/HAL\/stm32yyxx_hal_fmpi2c_ex.c.o \r\n.pio\/build\/nucleo_g071rb\/SrcWrapper\/src\/HAL\/stm32yyxx_hal_gfxmmu.c.o \r\n.pio\/build\/nucleo_g071rb\/SrcWrapper\/src\/HAL\/stm32yyxx_hal_gpio.c.o \r\n.pio\/build\/nucleo_g071rb\/SrcWrapper\/src\/HAL\/stm32yyxx_hal_gpio_ex.c.o \r\n.pio\/build\/nucleo_g071rb\/SrcWrapper\/src\/HAL\/stm32yyxx_hal_hash.c.o \r\n.pio\/build\/nucleo_g071rb\/SrcWrapper\/src\/HAL\/stm32yyxx_hal_hash_ex.c.o \r\n.pio\/build\/nucleo_g071rb\/SrcWrapper\/src\/HAL\/stm32yyxx_hal_hcd.c.o \r\n.pio\/build\/nucleo_g071rb\/SrcWrapper\/src\/HAL\/stm32yyxx_hal_hrtim.c.o \r\n.pio\/build\/nucleo_g071rb\/SrcWrapper\/src\/HAL\/stm32yyxx_hal_hsem.c.o \r\n.pio\/build\/nucleo_g071rb\/SrcWrapper\/src\/HAL\/stm32yyxx_hal_i2c.c.o \r\n.pio\/build\/nucleo_g071rb\/SrcWrapper\/src\/HAL\/stm32yyxx_hal_i2c_ex.c.o \r\n.pio\/build\/nucleo_g071rb\/SrcWrapper\/src\/HAL\/stm32yyxx_hal_i2s.c.o \r\n.pio\/build\/nucleo_g071rb\/SrcWrapper\/src\/HAL\/stm32yyxx_hal_i2s_ex.c.o \r\n.pio\/build\/nucleo_g071rb\/SrcWrapper\/src\/HAL\/stm32yyxx_hal_ipcc.c.o \r\n.pio\/build\/nucleo_g071rb\/SrcWrapper\/src\/HAL\/stm32yyxx_hal_irda.c.o \r\n.pio\/build\/nucleo_g071rb\/SrcWrapper\/src\/HAL\/stm32yyxx_hal_iwdg.c.o \r\n.pio\/build\/nucleo_g071rb\/SrcWrapper\/src\/HAL\/stm32yyxx_hal_jpeg.c.o \r\n.pio\/build\/nucleo_g071rb\/SrcWrapper\/src\/HAL\/stm32yyxx_hal_lcd.c.o \r\n.pio\/build\/nucleo_g071rb\/SrcWrapper\/src\/HAL\/stm32yyxx_hal_lptim.c.o \r\n.pio\/build\/nucleo_g071rb\/SrcWrapper\/src\/HAL\/stm32yyxx_hal_ltdc.c.o \r\n.pio\/build\/nucleo_g071rb\/SrcWrapper\/src\/HAL\/stm32yyxx_hal_ltdc_ex.c.o \r\n.pio\/build\/nucleo_g071rb\/SrcWrapper\/src\/HAL\/stm32yyxx_hal_mdios.c.o \r\n.pio\/build\/nucleo_g071rb\/SrcWrapper\/src\/HAL\/stm32yyxx_hal_mdma.c.o \r\n.pio\/build\/nucleo_g071rb\/SrcWrapper\/src\/HAL\/stm32yyxx_hal_mmc.c.o \r\n.pio\/build\/nucleo_g071rb\/SrcWrapper\/src\/HAL\/stm32yyxx_hal_mmc_ex.c.o \r\n.pio\/build\/nucleo_g071rb\/SrcWrapper\/src\/HAL\/stm32yyxx_hal_nand.c.o \r\n.pio\/build\/nucleo_g071rb\/SrcWrapper\/src\/HAL\/stm32yyxx_hal_nor.c.o \r\n.pio\/build\/nucleo_g071rb\/SrcWrapper\/src\/HAL\/stm32yyxx_hal_opamp.c.o \r\n.pio\/build\/nucleo_g071rb\/SrcWrapper\/src\/HAL\/stm32yyxx_hal_opamp_ex.c.o \r\n.pio\/build\/nucleo_g071rb\/SrcWrapper\/src\/HAL\/stm32yyxx_hal_ospi.c.o \r\n.pio\/build\/nucleo_g071rb\/SrcWrapper\/src\/HAL\/stm32yyxx_hal_otfdec.c.o \r\n.pio\/build\/nucleo_g071rb\/SrcWrapper\/src\/HAL\/stm32yyxx_hal_pccard.c.o \r\n.pio\/build\/nucleo_g071rb\/SrcWrapper\/src\/HAL\/stm32yyxx_hal_pcd.c.o \r\n.pio\/build\/nucleo_g071rb\/SrcWrapper\/src\/HAL\/stm32yyxx_hal_pcd_ex.c.o \r\n.pio\/build\/nucleo_g071rb\/SrcWrapper\/src\/HAL\/stm32yyxx_hal_pka.c.o \r\n.pio\/build\/nucleo_g071rb\/SrcWrapper\/src\/HAL\/stm32yyxx_hal_pssi.c.o \r\n.pio\/build\/nucleo_g071rb\/SrcWrapper\/src\/HAL\/stm32yyxx_hal_pwr.c.o \r\n.pio\/build\/nucleo_g071rb\/SrcWrapper\/src\/HAL\/stm32yyxx_hal_pwr_ex.c.o \r\n.pio\/build\/nucleo_g071rb\/SrcWrapper\/src\/HAL\/stm32yyxx_hal_qspi.c.o \r\n.pio\/build\/nucleo_g071rb\/SrcWrapper\/src\/HAL\/stm32yyxx_hal_ramecc.c.o \r\n.pio\/build\/nucleo_g071rb\/SrcWrapper\/src\/HAL\/stm32yyxx_hal_rcc.c.o \r\n.pio\/build\/nucleo_g071rb\/SrcWrapper\/src\/HAL\/stm32yyxx_hal_rcc_ex.c.o \r\n.pio\/build\/nucleo_g071rb\/SrcWrapper\/src\/HAL\/stm32yyxx_hal_rng.c.o \r\n.pio\/build\/nucleo_g071rb\/SrcWrapper\/src\/HAL\/stm32yyxx_hal_rng_ex.c.o \r\n.pio\/build\/nucleo_g071rb\/SrcWrapper\/src\/HAL\/stm32yyxx_hal_rtc.c.o \r\n.pio\/build\/nucleo_g071rb\/SrcWrapper\/src\/HAL\/stm32yyxx_hal_rtc_ex.c.o \r\n.pio\/build\/nucleo_g071rb\/SrcWrapper\/src\/HAL\/stm32yyxx_hal_sai.c.o \r\n.pio\/build\/nucleo_g071rb\/SrcWrapper\/src\/HAL\/stm32yyxx_hal_sai_ex.c.o \r\n.pio\/build\/nucleo_g071rb\/SrcWrapper\/src\/HAL\/stm32yyxx_hal_sd.c.o \r\n.pio\/build\/nucleo_g071rb\/SrcWrapper\/src\/HAL\/stm32yyxx_hal_sd_ex.c.o \r\n.pio\/build\/nucleo_g071rb\/SrcWrapper\/src\/HAL\/stm32yyxx_hal_sdadc.c.o \r\n.pio\/build\/nucleo_g071rb\/SrcWrapper\/src\/HAL\/stm32yyxx_hal_sdram.c.o \r\n.pio\/build\/nucleo_g071rb\/SrcWrapper\/src\/HAL\/stm32yyxx_hal_smartcard.c.o \r\n.pio\/build\/nucleo_g071rb\/SrcWrapper\/src\/HAL\/stm32yyxx_hal_smartcard_ex.c.o \r\n.pio\/build\/nucleo_g071rb\/SrcWrapper\/src\/HAL\/stm32yyxx_hal_smbus.c.o \r\n.pio\/build\/nucleo_g071rb\/SrcWrapper\/src\/HAL\/stm32yyxx_hal_spdifrx.c.o \r\n.pio\/build\/nucleo_g071rb\/SrcWrapper\/src\/HAL\/stm32yyxx_hal_spi.c.o \r\n.pio\/build\/nucleo_g071rb\/SrcWrapper\/src\/HAL\/stm32yyxx_hal_spi_ex.c.o \r\n.pio\/build\/nucleo_g071rb\/SrcWrapper\/src\/HAL\/stm32yyxx_hal_sram.c.o \r\n.pio\/build\/nucleo_g071rb\/SrcWrapper\/src\/HAL\/stm32yyxx_hal_swpmi.c.o \r\n.pio\/build\/nucleo_g071rb\/SrcWrapper\/src\/HAL\/stm32yyxx_hal_tim.c.o \r\n.pio\/build\/nucleo_g071rb\/SrcWrapper\/src\/HAL\/stm32yyxx_hal_tim_ex.c.o \r\n.pio\/build\/nucleo_g071rb\/SrcWrapper\/src\/HAL\/stm32yyxx_hal_tsc.c.o \r\n.pio\/build\/nucleo_g071rb\/SrcWrapper\/src\/HAL\/stm32yyxx_hal_uart.c.o \r\n.pio\/build\/nucleo_g071rb\/SrcWrapper\/src\/HAL\/stm32yyxx_hal_uart_ex.c.o \r\n.pio\/build\/nucleo_g071rb\/SrcWrapper\/src\/HAL\/stm32yyxx_hal_usart.c.o \r\n.pio\/build\/nucleo_g071rb\/SrcWrapper\/src\/HAL\/stm32yyxx_hal_usart_ex.c.o \r\n.pio\/build\/nucleo_g071rb\/SrcWrapper\/src\/HAL\/stm32yyxx_hal_wwdg.c.o \r\n.pio\/build\/nucleo_g071rb\/SrcWrapper\/src\/LL\/stm32yyxx_ll_adc.c.o \r\n.pio\/build\/nucleo_g071rb\/SrcWrapper\/src\/LL\/stm32yyxx_ll_bdma.c.o \r\n.pio\/build\/nucleo_g071rb\/SrcWrapper\/src\/LL\/stm32yyxx_ll_comp.c.o \r\n.pio\/build\/nucleo_g071rb\/SrcWrapper\/src\/LL\/stm32yyxx_ll_cordic.c.o \r\n.pio\/build\/nucleo_g071rb\/SrcWrapper\/src\/LL\/stm32yyxx_ll_crc.c.o \r\n.pio\/build\/nucleo_g071rb\/SrcWrapper\/src\/LL\/stm32yyxx_ll_crs.c.o \r\n.pio\/build\/nucleo_g071rb\/SrcWrapper\/src\/LL\/stm32yyxx_ll_dac.c.o \r\n.pio\/build\/nucleo_g071rb\/SrcWrapper\/src\/LL\/stm32yyxx_ll_delayblock.c.o \r\n.pio\/build\/nucleo_g071rb\/SrcWrapper\/src\/LL\/stm32yyxx_ll_dma.c.o \r\n.pio\/build\/nucleo_g071rb\/SrcWrapper\/src\/LL\/stm32yyxx_ll_dma2d.c.o \r\n.pio\/build\/nucleo_g071rb\/SrcWrapper\/src\/LL\/stm32yyxx_ll_exti.c.o \r\n.pio\/build\/nucleo_g071rb\/SrcWrapper\/src\/LL\/stm32yyxx_ll_fmac.c.o \r\n.pio\/build\/nucleo_g071rb\/SrcWrapper\/src\/LL\/stm32yyxx_ll_fmc.c.o \r\n.pio\/build\/nucleo_g071rb\/SrcWrapper\/src\/LL\/stm32yyxx_ll_fsmc.c.o \r\n.pio\/build\/nucleo_g071rb\/SrcWrapper\/src\/LL\/stm32yyxx_ll_gpio.c.o \r\n.pio\/build\/nucleo_g071rb\/SrcWrapper\/src\/LL\/stm32yyxx_ll_hrtim.c.o \r\n.pio\/build\/nucleo_g071rb\/SrcWrapper\/src\/LL\/stm32yyxx_ll_i2c.c.o \r\n.pio\/build\/nucleo_g071rb\/SrcWrapper\/src\/LL\/stm32yyxx_ll_lptim.c.o \r\n.pio\/build\/nucleo_g071rb\/SrcWrapper\/src\/LL\/stm32yyxx_ll_lpuart.c.o \r\n.pio\/build\/nucleo_g071rb\/SrcWrapper\/src\/LL\/stm32yyxx_ll_mdma.c.o \r\n.pio\/build\/nucleo_g071rb\/SrcWrapper\/src\/LL\/stm32yyxx_ll_opamp.c.o \r\n.pio\/build\/nucleo_g071rb\/SrcWrapper\/src\/LL\/stm32yyxx_ll_pka.c.o \r\n.pio\/build\/nucleo_g071rb\/SrcWrapper\/src\/LL\/stm32yyxx_ll_pwr.c.o \r\n.pio\/build\/nucleo_g071rb\/SrcWrapper\/src\/LL\/stm32yyxx_ll_rcc.c.o \r\n.pio\/build\/nucleo_g071rb\/SrcWrapper\/src\/LL\/stm32yyxx_ll_rng.c.o \r\n.pio\/build\/nucleo_g071rb\/SrcWrapper\/src\/LL\/stm32yyxx_ll_rtc.c.o \r\n.pio\/build\/nucleo_g071rb\/SrcWrapper\/src\/LL\/stm32yyxx_ll_sdmmc.c.o \r\n.pio\/build\/nucleo_g071rb\/SrcWrapper\/src\/LL\/stm32yyxx_ll_spi.c.o \r\n.pio\/build\/nucleo_g071rb\/SrcWrapper\/src\/LL\/stm32yyxx_ll_swpmi.c.o \r\n.pio\/build\/nucleo_g071rb\/SrcWrapper\/src\/LL\/stm32yyxx_ll_tim.c.o \r\n.pio\/build\/nucleo_g071rb\/SrcWrapper\/src\/LL\/stm32yyxx_ll_ucpd.c.o \r\n.pio\/build\/nucleo_g071rb\/SrcWrapper\/src\/LL\/stm32yyxx_ll_usart.c.o \r\n.pio\/build\/nucleo_g071rb\/SrcWrapper\/src\/LL\/stm32yyxx_ll_usb.c.o \r\n.pio\/build\/nucleo_g071rb\/SrcWrapper\/src\/LL\/stm32yyxx_ll_utils.c.o \r\n.pio\/build\/nucleo_g071rb\/SrcWrapper\/src\/stm32\/PortNames.c.o \r\n.pio\/build\/nucleo_g071rb\/SrcWrapper\/src\/stm32\/analog.cpp.o \r\n.pio\/build\/nucleo_g071rb\/SrcWrapper\/src\/stm32\/bootloader.c.o \r\n.pio\/build\/nucleo_g071rb\/SrcWrapper\/src\/stm32\/clock.c.o \r\n.pio\/build\/nucleo_g071rb\/SrcWrapper\/src\/stm32\/core_callback.c.o \r\n.pio\/build\/nucleo_g071rb\/SrcWrapper\/src\/stm32\/dwt.c.o \r\n.pio\/build\/nucleo_g071rb\/SrcWrapper\/src\/stm32\/hw_config.c.o \r\n.pio\/build\/nucleo_g071rb\/SrcWrapper\/src\/stm32\/interrupt.cpp.o \r\n.pio\/build\/nucleo_g071rb\/SrcWrapper\/src\/stm32\/lock_resource.c.o \r\n.pio\/build\/nucleo_g071rb\/SrcWrapper\/src\/stm32\/low_power.c.o \r\n.pio\/build\/nucleo_g071rb\/SrcWrapper\/src\/stm32\/pinmap.c.o \r\n.pio\/build\/nucleo_g071rb\/SrcWrapper\/src\/stm32\/rtc.c.o \r\n.pio\/build\/nucleo_g071rb\/SrcWrapper\/src\/stm32\/stm32_def.c.o \r\n.pio\/build\/nucleo_g071rb\/SrcWrapper\/src\/stm32\/stm32_eeprom.c.o \r\n.pio\/build\/nucleo_g071rb\/SrcWrapper\/src\/stm32\/system_stm32yyxx.c.o \r\n.pio\/build\/nucleo_g071rb\/SrcWrapper\/src\/stm32\/timer.c.o \r\n.pio\/build\/nucleo_g071rb\/SrcWrapper\/src\/stm32\/uart.c.o \r\n.pio\/build\/nucleo_g071rb\/SrcWrapper\/src\/syscalls.c.o \r\n.pio\/build\/nucleo_g071rb\/src\/main.cpp.o\r\n-LC:\/Users\/andreas\/.platformio\/platforms\/ststm32\/ldscripts\r\n-L.pio\/build\/nucleo_g071rb\r\n-LC:\/Users\/andreas\/.platformio\/packages\/framework-arduinoststm32\/variants\/NUCLEO_G071RB\r\n-LC:\/Users\/andreas\/.platformio\/packages\/framework-cmsis\/CMSIS\/DSP\/Lib\/GCC\r\n-Wl,--start-group -larm_cortexM0l_math -lc -lm -lgcc -lstdc++ -Wl,--end-group\r\n\r\n&#x5B;...]\r\n\r\narm-none-eabi-objcopy -O binary .pio\\build\\nucleo_g071rb\\firmware.elf .pio\\build\\nucleo_g071rb\\firmware.bin\r\n\r\n&#x5B;...]\r\n<\/pre>\n","protected":false},"excerpt":{"rendered":"<p>Build Type build_type = release | debug Build Configurations Build options platform.io ststm32 &quot;build&quot;: { &quot;core&quot;: &quot;stm32&quot;, &quot;cpu&quot;: &quot;cortex-m0&quot;, &quot;extra_flags&quot;: &quot;-DSTM32F072xB&quot;, &quot;f_cpu&quot;: &quot;48000000L&quot;, &quot;mcu&quot;: &quot;stm32f072rbt6&quot;, &quot;product_line&quot;: &quot;STM32F072xB&quot;, &quot;variant&quot;: &quot;NUCLEO_F072RB&quot; }, &#x5B;&#8230;] Abbreviation RCC Reset and Clock Controller PWR Power Controller block PLL Phase-Locked Loop internal oscillator RC-OSC resistor-capacitor oscillator HSI High-speed internal RC oscillator CSI [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1],"tags":[],"class_list":["post-11816","post","type-post","status-publish","format-standard","hentry","category-uncategorized"],"_links":{"self":[{"href":"https:\/\/blog.bachi.net\/index.php?rest_route=\/wp\/v2\/posts\/11816","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/blog.bachi.net\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/blog.bachi.net\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/blog.bachi.net\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/blog.bachi.net\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=11816"}],"version-history":[{"count":36,"href":"https:\/\/blog.bachi.net\/index.php?rest_route=\/wp\/v2\/posts\/11816\/revisions"}],"predecessor-version":[{"id":12698,"href":"https:\/\/blog.bachi.net\/index.php?rest_route=\/wp\/v2\/posts\/11816\/revisions\/12698"}],"wp:attachment":[{"href":"https:\/\/blog.bachi.net\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=11816"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/blog.bachi.net\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=11816"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/blog.bachi.net\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=11816"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}