├── .mxproject ├── Drivers └── CMSIS │ ├── Core │ ├── Include │ │ ├── cmsis_armcc.h │ │ ├── cmsis_armclang.h │ │ ├── cmsis_armclang_ltm.h │ │ ├── cmsis_compiler.h │ │ ├── cmsis_gcc.h │ │ ├── cmsis_iccarm.h │ │ ├── cmsis_version.h │ │ ├── core_armv81mml.h │ │ ├── core_armv8mbl.h │ │ ├── core_armv8mml.h │ │ ├── core_cm0.h │ │ ├── core_cm0plus.h │ │ ├── core_cm1.h │ │ ├── core_cm23.h │ │ ├── core_cm3.h │ │ ├── core_cm33.h │ │ ├── core_cm35p.h │ │ ├── core_cm4.h │ │ ├── core_cm7.h │ │ ├── core_sc000.h │ │ ├── core_sc300.h │ │ ├── mpu_armv7.h │ │ ├── mpu_armv8.h │ │ └── tz_context.h │ └── Template │ │ └── ARMv8-M │ │ ├── main_s.c │ │ └── tz_context.c │ ├── Device │ └── ST │ │ └── STM32G4xx │ │ ├── Include │ │ ├── stm32g431xx.h │ │ ├── stm32g441xx.h │ │ ├── stm32g471xx.h │ │ ├── stm32g473xx.h │ │ ├── stm32g474xx.h │ │ ├── stm32g483xx.h │ │ ├── stm32g484xx.h │ │ ├── stm32g491xx.h │ │ ├── stm32g4a1xx.h │ │ ├── stm32g4xx.h │ │ ├── stm32gbk1cb.h │ │ └── system_stm32g4xx.h │ │ ├── LICENSE.txt │ │ └── Source │ │ └── Templates │ │ ├── arm │ │ ├── startup_stm32g431xx.s │ │ ├── startup_stm32g441xx.s │ │ ├── startup_stm32g471xx.s │ │ ├── startup_stm32g473xx.s │ │ ├── startup_stm32g474xx.s │ │ ├── startup_stm32g483xx.s │ │ ├── startup_stm32g484xx.s │ │ ├── startup_stm32g491xx.s │ │ ├── startup_stm32g4a1xx.s │ │ └── startup_stm32gbk1cb.s │ │ ├── gcc │ │ ├── startup_stm32g431xx.s │ │ ├── startup_stm32g441xx.s │ │ ├── startup_stm32g471xx.s │ │ ├── startup_stm32g473xx.s │ │ ├── startup_stm32g474xx.s │ │ ├── startup_stm32g483xx.s │ │ ├── startup_stm32g484xx.s │ │ ├── startup_stm32g491xx.s │ │ ├── startup_stm32g4a1xx.s │ │ └── startup_stm32gbk1cb.s │ │ ├── iar │ │ ├── linker │ │ │ ├── stm32g431xx_flash.icf │ │ │ ├── stm32g431xx_sram.icf │ │ │ ├── stm32g441xx_flash.icf │ │ │ ├── stm32g441xx_sram.icf │ │ │ ├── stm32g471xx_flash.icf │ │ │ ├── stm32g471xx_sram.icf │ │ │ ├── stm32g473xx_flash.icf │ │ │ ├── stm32g473xx_sram.icf │ │ │ ├── stm32g474xx_flash.icf │ │ │ ├── stm32g474xx_sram.icf │ │ │ ├── stm32g481xx_flash.icf │ │ │ ├── stm32g481xx_sram.icf │ │ │ ├── stm32g483xx_flash.icf │ │ │ ├── stm32g483xx_sram.icf │ │ │ ├── stm32g484xx_flash.icf │ │ │ ├── stm32g484xx_sram.icf │ │ │ ├── stm32g491xx_flash.icf │ │ │ ├── stm32g491xx_sram.icf │ │ │ ├── stm32g4a1xx_flash.icf │ │ │ ├── stm32g4a1xx_sram.icf │ │ │ ├── stm32gbk1cb_flash.icf │ │ │ └── stm32gbk1cb_sram.icf │ │ ├── startup_stm32g431xx.s │ │ ├── startup_stm32g441xx.s │ │ ├── startup_stm32g471xx.s │ │ ├── startup_stm32g473xx.s │ │ ├── startup_stm32g474xx.s │ │ ├── startup_stm32g483xx.s │ │ ├── startup_stm32g484xx.s │ │ ├── startup_stm32g491xx.s │ │ ├── startup_stm32g4a1xx.s │ │ └── startup_stm32gbk1cb.s │ │ └── system_stm32g4xx.c │ ├── Include │ ├── cmsis_armcc.h │ ├── cmsis_armclang.h │ ├── cmsis_armclang_ltm.h │ ├── cmsis_compiler.h │ ├── cmsis_gcc.h │ ├── cmsis_iccarm.h │ ├── cmsis_version.h │ ├── core_armv81mml.h │ ├── core_armv8mbl.h │ ├── core_armv8mml.h │ ├── core_cm0.h │ ├── core_cm0plus.h │ ├── core_cm1.h │ ├── core_cm23.h │ ├── core_cm3.h │ ├── core_cm33.h │ ├── core_cm35p.h │ ├── core_cm4.h │ ├── core_cm7.h │ ├── core_sc000.h │ ├── core_sc300.h │ ├── mpu_armv7.h │ ├── mpu_armv8.h │ └── tz_context.h │ └── LICENSE.txt ├── MDK-ARM ├── .vscode │ ├── c_cpp_properties.json │ ├── keil-assistant.log │ ├── settings.json │ └── uv4.log.lock ├── Core │ ├── Inc │ │ ├── main.h │ │ └── stm32g4xx_it.h │ └── Src │ │ ├── main.c │ │ ├── stm32g4xx_it.c │ │ └── system_stm32g4xx.c ├── DebugConfig │ ├── uart-test_STM32G431K6Ux.dbgconf │ └── uart-test_STM32G431VBTx.dbgconf ├── EventRecorderStub.scvd ├── RTE │ └── _uart-test │ │ └── RTE_Components.h ├── startup_stm32g431xx.lst ├── startup_stm32g431xx.s ├── uart-test.uvguix.Defenver ├── uart-test.uvoptx ├── uart-test.uvprojx ├── uart-test │ ├── ExtDll.iex │ ├── adc.d │ ├── adc.o │ ├── app_fatfs.d │ ├── app_fatfs.o │ ├── basicmathfunctions.d │ ├── basicmathfunctions.o │ ├── bayesfunctions.d │ ├── bayesfunctions.o │ ├── commontables.d │ ├── commontables.o │ ├── complexmathfunctions.d │ ├── complexmathfunctions.o │ ├── controllerfunctions.d │ ├── controllerfunctions.o │ ├── dac.d │ ├── dac.o │ ├── delay.d │ ├── delay.o │ ├── diskio.d │ ├── diskio.o │ ├── distancefunctions.d │ ├── distancefunctions.o │ ├── dma.d │ ├── dma.o │ ├── exfuns.d │ ├── exfuns.o │ ├── fastmathfunctions.d │ ├── fastmathfunctions.o │ ├── fatfs_app.d │ ├── fattester.d │ ├── fattester.o │ ├── ff.d │ ├── ff.o │ ├── ff_gen_drv.d │ ├── ff_gen_drv.o │ ├── ffsystem.d │ ├── ffsystem.o │ ├── ffunicode.d │ ├── ffunicode.o │ ├── filteringfunctions.d │ ├── filteringfunctions.o │ ├── gpio.d │ ├── gpio.o │ ├── lcd.d │ ├── lcd.o │ ├── led.d │ ├── led.o │ ├── main.d │ ├── main.o │ ├── malloc.d │ ├── malloc.o │ ├── matrixfunctions.d │ ├── matrixfunctions.o │ ├── opamp.d │ ├── opamp.o │ ├── osc.d │ ├── osc.o │ ├── sd_diskio.d │ ├── sd_diskio.o │ ├── sdmmc.d │ ├── sdmmc.o │ ├── spi.d │ ├── spi.o │ ├── st7735_lcd_init.d │ ├── st7735_lcd_init.o │ ├── st77xx_lcd_init.d │ ├── st77xx_lcd_init.o │ ├── startup_stm32g431xx.d │ ├── startup_stm32g431xx.o │ ├── statisticsfunctions.d │ ├── statisticsfunctions.o │ ├── stm32g4xx_hal_cortex.d │ ├── stm32g4xx_hal_cortex.o │ ├── stm32g4xx_hal_dma.d │ ├── stm32g4xx_hal_dma.o │ ├── stm32g4xx_hal_dma_ex.d │ ├── stm32g4xx_hal_dma_ex.o │ ├── stm32g4xx_hal_exti.d │ ├── stm32g4xx_hal_exti.o │ ├── stm32g4xx_hal_flash.d │ ├── stm32g4xx_hal_flash.o │ ├── stm32g4xx_hal_flash_ex.d │ ├── stm32g4xx_hal_flash_ex.o │ ├── stm32g4xx_hal_flash_ramfunc.d │ ├── stm32g4xx_hal_flash_ramfunc.o │ ├── stm32g4xx_hal_gpio.d │ ├── stm32g4xx_hal_gpio.o │ ├── stm32g4xx_hal_msp.d │ ├── stm32g4xx_hal_msp.o │ ├── stm32g4xx_hal_pcd.d │ ├── stm32g4xx_hal_pcd.o │ ├── stm32g4xx_hal_pcd_ex.d │ ├── stm32g4xx_hal_pcd_ex.o │ ├── stm32g4xx_hal_pwr.d │ ├── stm32g4xx_hal_pwr.o │ ├── stm32g4xx_hal_pwr_ex.d │ ├── stm32g4xx_hal_pwr_ex.o │ ├── stm32g4xx_hal_rcc.d │ ├── stm32g4xx_hal_rcc.o │ ├── stm32g4xx_hal_rcc_ex.d │ ├── stm32g4xx_hal_rcc_ex.o │ ├── stm32g4xx_hal_tim.d │ ├── stm32g4xx_hal_tim.o │ ├── stm32g4xx_hal_tim_ex.d │ ├── stm32g4xx_hal_tim_ex.o │ ├── stm32g4xx_hal_uart.d │ ├── stm32g4xx_hal_uart.o │ ├── stm32g4xx_hal_uart_ex.d │ ├── stm32g4xx_hal_uart_ex.o │ ├── stm32g4xx_it.d │ ├── stm32g4xx_it.o │ ├── stm32g4xx_ll_usb.d │ ├── stm32g4xx_ll_usb.o │ ├── supportfunctions.d │ ├── supportfunctions.o │ ├── svmfunctions.d │ ├── svmfunctions.o │ ├── sys.d │ ├── sys.o │ ├── system_stm32g4xx.d │ ├── system_stm32g4xx.o │ ├── timer.d │ ├── timer.o │ ├── transformfunctions.d │ ├── transformfunctions.o │ ├── uart-test.axf │ ├── uart-test.build_log.htm │ ├── uart-test.hex │ ├── uart-test.htm │ ├── uart-test.lnp │ ├── uart-test.map │ ├── uart-test.sct │ ├── uart-test_sct.Bak │ ├── uart-test_uart-test.dep │ ├── usart.d │ ├── usart.o │ ├── usb_device.d │ ├── usb_device.o │ ├── usb_top.d │ ├── usb_top.o │ ├── usbd_cdc.d │ ├── usbd_cdc_if.d │ ├── usbd_conf.d │ ├── usbd_core.d │ ├── usbd_core.o │ ├── usbd_ctlreq.d │ ├── usbd_desc.d │ ├── usbd_desc.o │ ├── usbd_ioreq.d │ ├── usbd_msc.d │ ├── usbd_msc_bot.d │ ├── usbd_msc_data.d │ ├── usbd_msc_scsi.d │ ├── usbd_mult.d │ ├── usbd_mult.o │ ├── usbd_storage_if.d │ ├── usr_sd_app.d │ ├── usr_sd_app.o │ ├── w25qxx.d │ └── w25qxx.o └── usr │ ├── STM32_USB_Device_Library │ ├── Class │ │ ├── CDC │ │ │ ├── Inc │ │ │ │ └── usbd_cdc.h │ │ │ └── Src │ │ │ │ └── usbd_cdc.c │ │ ├── MSC │ │ │ ├── Inc │ │ │ │ ├── usbd_msc.h │ │ │ │ ├── usbd_msc_bot.h │ │ │ │ ├── usbd_msc_data.h │ │ │ │ └── usbd_msc_scsi.h │ │ │ └── Src │ │ │ │ ├── usbd_msc.c │ │ │ │ ├── usbd_msc_bot.c │ │ │ │ ├── usbd_msc_data.c │ │ │ │ └── usbd_msc_scsi.c │ │ └── Mult │ │ │ ├── usbd_mult.c │ │ │ └── usbd_mult.h │ ├── Core │ │ ├── Inc │ │ │ ├── usbd_core.h │ │ │ ├── usbd_ctlreq.h │ │ │ ├── usbd_def.h │ │ │ └── usbd_ioreq.h │ │ └── Src │ │ │ ├── usbd_core.c │ │ │ ├── usbd_ctlreq.c │ │ │ └── usbd_ioreq.c │ └── USB_Device │ │ ├── App │ │ ├── usb_device.c │ │ ├── usb_device.h │ │ ├── usbd_cdc_if.c │ │ ├── usbd_cdc_if.h │ │ ├── usbd_desc.c │ │ ├── usbd_desc.h │ │ ├── usbd_storage_if.c │ │ └── usbd_storage_if.h │ │ └── Target │ │ ├── usbd_conf.c │ │ └── usbd_conf.h │ ├── adc.c │ ├── adc.h │ ├── dac.c │ ├── dac.h │ ├── delay.c │ ├── delay.h │ ├── dma.c │ ├── dma.h │ ├── fatfs │ ├── documents │ │ ├── css_e.css │ │ ├── res │ │ │ ├── app1.c │ │ │ ├── app2.c │ │ │ ├── app3.c │ │ │ ├── app4.c │ │ │ ├── app5.c │ │ │ ├── f1.png │ │ │ ├── f2.png │ │ │ ├── f3.png │ │ │ ├── f4.png │ │ │ ├── f5.png │ │ │ ├── f6.png │ │ │ ├── f7.png │ │ │ ├── funcs.png │ │ │ ├── layers.png │ │ │ ├── layers1.png │ │ │ ├── layers2.png │ │ │ ├── layers3.png │ │ │ ├── mkfatimg.zip │ │ │ ├── mkfs.xls │ │ │ ├── modules.png │ │ │ ├── rwtest1.png │ │ │ ├── rwtest2.png │ │ │ └── rwtest3.png │ │ └── updates.txt │ ├── exfuns │ │ ├── exfuns.c │ │ ├── exfuns.h │ │ ├── fattester.c │ │ └── fattester.h │ └── source │ │ ├── 00history.txt │ │ ├── 00readme.txt │ │ ├── bmp.h │ │ ├── diskio.c │ │ ├── diskio.h │ │ ├── fatfs_app.c │ │ ├── fatfs_app.h │ │ ├── ff.c │ │ ├── ff.h │ │ ├── ffconf.h │ │ ├── ffsystem.c │ │ └── ffunicode.c │ ├── fft.c │ ├── fft.h │ ├── gpio.c │ ├── gpio.h │ ├── lcd │ ├── FONT.H │ ├── hx8357_lcd_init.c │ ├── hx8357_lcd_init.h │ ├── lcd.c │ ├── lcd.h │ ├── lcd_init.c │ ├── lcd_init.h │ ├── pic1.h │ ├── st77xx_lcd_init.c │ └── st77xx_lcd_init.h │ ├── malloc │ ├── malloc.c │ └── malloc.h │ ├── opamp.c │ ├── opamp.h │ ├── osc.c │ ├── osc.h │ ├── per_conf.h │ ├── sdmmc │ ├── sdmmc.c │ ├── sdmmc.h │ ├── usr_sd_app.c │ └── usr_sd_app.h │ ├── spi.c │ ├── spi.h │ ├── spi_flash │ ├── w25qxx.c │ └── w25qxx.h │ ├── sys.c │ ├── sys.h │ ├── timer.c │ ├── timer.h │ ├── usart.c │ ├── usart.h │ ├── usb_top.c │ └── usb_top.h ├── README.md └── STM32G4xx_HAL_Driver ├── Inc ├── Legacy │ └── stm32_hal_legacy.h ├── stm32g4xx_hal.h ├── stm32g4xx_hal_conf.h ├── stm32g4xx_hal_def.h ├── stm32g4xx_hal_pcd.h ├── stm32g4xx_hal_pcd_ex.h └── stm32g4xx_ll_usb.h ├── LICENSE.txt └── Src ├── stm32g4xx_hal_pcd.c ├── stm32g4xx_hal_pcd_ex.c └── stm32g4xx_ll_usb.c /Drivers/CMSIS/Core/Include/cmsis_version.h: -------------------------------------------------------------------------------- 1 | /**************************************************************************//** 2 | * @file cmsis_version.h 3 | * @brief CMSIS Core(M) Version definitions 4 | * @version V5.0.3 5 | * @date 24. June 2019 6 | ******************************************************************************/ 7 | /* 8 | * Copyright (c) 2009-2019 ARM Limited. All rights reserved. 9 | * 10 | * SPDX-License-Identifier: Apache-2.0 11 | * 12 | * Licensed under the Apache License, Version 2.0 (the License); you may 13 | * not use this file except in compliance with the License. 14 | * You may obtain a copy of the License at 15 | * 16 | * www.apache.org/licenses/LICENSE-2.0 17 | * 18 | * Unless required by applicable law or agreed to in writing, software 19 | * distributed under the License is distributed on an AS IS BASIS, WITHOUT 20 | * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 21 | * See the License for the specific language governing permissions and 22 | * limitations under the License. 23 | */ 24 | 25 | #if defined ( __ICCARM__ ) 26 | #pragma system_include /* treat file as system include file for MISRA check */ 27 | #elif defined (__clang__) 28 | #pragma clang system_header /* treat file as system include file */ 29 | #endif 30 | 31 | #ifndef __CMSIS_VERSION_H 32 | #define __CMSIS_VERSION_H 33 | 34 | /* CMSIS Version definitions */ 35 | #define __CM_CMSIS_VERSION_MAIN ( 5U) /*!< [31:16] CMSIS Core(M) main version */ 36 | #define __CM_CMSIS_VERSION_SUB ( 3U) /*!< [15:0] CMSIS Core(M) sub version */ 37 | #define __CM_CMSIS_VERSION ((__CM_CMSIS_VERSION_MAIN << 16U) | \ 38 | __CM_CMSIS_VERSION_SUB ) /*!< CMSIS Core(M) version number */ 39 | #endif 40 | -------------------------------------------------------------------------------- /Drivers/CMSIS/Core/Template/ARMv8-M/main_s.c: -------------------------------------------------------------------------------- 1 | /****************************************************************************** 2 | * @file main_s.c 3 | * @brief Code template for secure main function 4 | * @version V1.1.1 5 | * @date 10. January 2018 6 | ******************************************************************************/ 7 | /* 8 | * Copyright (c) 2013-2018 Arm Limited. All rights reserved. 9 | * 10 | * SPDX-License-Identifier: Apache-2.0 11 | * 12 | * Licensed under the Apache License, Version 2.0 (the License); you may 13 | * not use this file except in compliance with the License. 14 | * You may obtain a copy of the License at 15 | * 16 | * www.apache.org/licenses/LICENSE-2.0 17 | * 18 | * Unless required by applicable law or agreed to in writing, software 19 | * distributed under the License is distributed on an AS IS BASIS, WITHOUT 20 | * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 21 | * See the License for the specific language governing permissions and 22 | * limitations under the License. 23 | */ 24 | 25 | /* Use CMSE intrinsics */ 26 | #include 27 | 28 | #include "RTE_Components.h" 29 | #include CMSIS_device_header 30 | 31 | /* TZ_START_NS: Start address of non-secure application */ 32 | #ifndef TZ_START_NS 33 | #define TZ_START_NS (0x200000U) 34 | #endif 35 | 36 | /* typedef for non-secure callback functions */ 37 | typedef void (*funcptr_void) (void) __attribute__((cmse_nonsecure_call)); 38 | 39 | /* Secure main() */ 40 | int main(void) { 41 | funcptr_void NonSecure_ResetHandler; 42 | 43 | /* Add user setup code for secure part here*/ 44 | 45 | /* Set non-secure main stack (MSP_NS) */ 46 | __TZ_set_MSP_NS(*((uint32_t *)(TZ_START_NS))); 47 | 48 | /* Get non-secure reset handler */ 49 | NonSecure_ResetHandler = (funcptr_void)(*((uint32_t *)((TZ_START_NS) + 4U))); 50 | 51 | /* Start non-secure state software application */ 52 | NonSecure_ResetHandler(); 53 | 54 | /* Non-secure software does not return, this code is not executed */ 55 | while (1) { 56 | __NOP(); 57 | } 58 | } 59 | -------------------------------------------------------------------------------- /Drivers/CMSIS/Device/ST/STM32G4xx/Include/stm32g4xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G4_OSC/9778f077c6a447817cad48cecee05a23d305e67c/Drivers/CMSIS/Device/ST/STM32G4xx/Include/stm32g4xx.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Device/ST/STM32G4xx/LICENSE.txt: -------------------------------------------------------------------------------- 1 | This software component is provided to you as part of a software package and 2 | applicable license terms are in the Package_license file. If you received this 3 | software component outside of a package or without applicable license terms, 4 | the terms of the Apache-2.0 license shall apply. 5 | You may obtain a copy of the Apache-2.0 at: 6 | https://opensource.org/licenses/Apache-2.0 7 | -------------------------------------------------------------------------------- /Drivers/CMSIS/Device/ST/STM32G4xx/Source/Templates/iar/linker/stm32g431xx_flash.icf: -------------------------------------------------------------------------------- 1 | /*###ICF### Section handled by ICF editor, don't touch! ****/ 2 | /*-Editor annotation file-*/ 3 | /* IcfEditorFile="$TOOLKIT_DIR$\config\ide\IcfEditor\cortex_v1_0.xml" */ 4 | /*-Specials-*/ 5 | define symbol __ICFEDIT_intvec_start__ = 0x08000000; 6 | /*-Memory Regions-*/ 7 | define symbol __ICFEDIT_region_ROM_start__ = 0x08000000; 8 | define symbol __ICFEDIT_region_ROM_end__ = 0x0801FFFF; 9 | define symbol __ICFEDIT_region_RAM_start__ = 0x20000000; 10 | define symbol __ICFEDIT_region_RAM_end__ = 0x20007FFF; 11 | define symbol __ICFEDIT_region_CCMSRAM_start__ = 0x10000000; 12 | define symbol __ICFEDIT_region_CCMSRAM_end__ = 0x100027FF; 13 | 14 | /*-Sizes-*/ 15 | define symbol __ICFEDIT_size_cstack__ = 0x400; 16 | define symbol __ICFEDIT_size_heap__ = 0x200; 17 | /**** End of ICF editor section. ###ICF###*/ 18 | 19 | 20 | define memory mem with size = 4G; 21 | define region ROM_region = mem:[from __ICFEDIT_region_ROM_start__ to __ICFEDIT_region_ROM_end__]; 22 | define region RAM_region = mem:[from __ICFEDIT_region_RAM_start__ to __ICFEDIT_region_RAM_end__]; 23 | define region CCMSRAM_region = mem:[from __ICFEDIT_region_CCMSRAM_start__ to __ICFEDIT_region_CCMSRAM_end__]; 24 | 25 | define block CSTACK with alignment = 8, size = __ICFEDIT_size_cstack__ { }; 26 | define block HEAP with alignment = 8, size = __ICFEDIT_size_heap__ { }; 27 | 28 | initialize by copy { readwrite }; 29 | do not initialize { section .noinit }; 30 | 31 | place at address mem:__ICFEDIT_intvec_start__ { readonly section .intvec }; 32 | 33 | place in ROM_region { readonly }; 34 | place in RAM_region { readwrite, 35 | block CSTACK, block HEAP }; 36 | place in CCMSRAM_region { }; 37 | -------------------------------------------------------------------------------- /Drivers/CMSIS/Device/ST/STM32G4xx/Source/Templates/iar/linker/stm32g431xx_sram.icf: -------------------------------------------------------------------------------- 1 | /*###ICF### Section handled by ICF editor, don't touch! ****/ 2 | /*-Editor annotation file-*/ 3 | /* IcfEditorFile="$TOOLKIT_DIR$\config\ide\IcfEditor\cortex_v1_0.xml" */ 4 | /*-Specials-*/ 5 | define symbol __ICFEDIT_intvec_start__ = 0x20000000; 6 | /*-Memory Regions-*/ 7 | define symbol __ICFEDIT_region_ROM_start__ = 0x20000000; 8 | define symbol __ICFEDIT_region_ROM_end__ = 0x20001FFF; 9 | define symbol __ICFEDIT_region_RAM_start__ = 0x20002000; 10 | define symbol __ICFEDIT_region_RAM_end__ = 0x20007FFF; 11 | define symbol __ICFEDIT_region_CCMSRAM_start__ = 0x10000000; 12 | define symbol __ICFEDIT_region_CCMSRAM_end__ = 0x100027FF; 13 | 14 | /*-Sizes-*/ 15 | define symbol __ICFEDIT_size_cstack__ = 0x400; 16 | define symbol __ICFEDIT_size_heap__ = 0x200; 17 | /**** End of ICF editor section. ###ICF###*/ 18 | 19 | 20 | define memory mem with size = 4G; 21 | define region ROM_region = mem:[from __ICFEDIT_region_ROM_start__ to __ICFEDIT_region_ROM_end__]; 22 | define region RAM_region = mem:[from __ICFEDIT_region_RAM_start__ to __ICFEDIT_region_RAM_end__]; 23 | define region CCMSRAM_region = mem:[from __ICFEDIT_region_CCMSRAM_start__ to __ICFEDIT_region_CCMSRAM_end__]; 24 | 25 | define block CSTACK with alignment = 8, size = __ICFEDIT_size_cstack__ { }; 26 | define block HEAP with alignment = 8, size = __ICFEDIT_size_heap__ { }; 27 | 28 | initialize by copy { readwrite }; 29 | do not initialize { section .noinit }; 30 | 31 | place at address mem:__ICFEDIT_intvec_start__ { readonly section .intvec }; 32 | 33 | place in ROM_region { readonly }; 34 | place in RAM_region { readwrite, 35 | block CSTACK, block HEAP }; 36 | place in CCMSRAM_region { }; 37 | -------------------------------------------------------------------------------- /Drivers/CMSIS/Device/ST/STM32G4xx/Source/Templates/iar/linker/stm32g441xx_flash.icf: -------------------------------------------------------------------------------- 1 | /*###ICF### Section handled by ICF editor, don't touch! ****/ 2 | /*-Editor annotation file-*/ 3 | /* IcfEditorFile="$TOOLKIT_DIR$\config\ide\IcfEditor\cortex_v1_0.xml" */ 4 | /*-Specials-*/ 5 | define symbol __ICFEDIT_intvec_start__ = 0x08000000; 6 | /*-Memory Regions-*/ 7 | define symbol __ICFEDIT_region_ROM_start__ = 0x08000000; 8 | define symbol __ICFEDIT_region_ROM_end__ = 0x0801FFFF; 9 | define symbol __ICFEDIT_region_RAM_start__ = 0x20000000; 10 | define symbol __ICFEDIT_region_RAM_end__ = 0x20007FFF; 11 | define symbol __ICFEDIT_region_CCMSRAM_start__ = 0x10000000; 12 | define symbol __ICFEDIT_region_CCMSRAM_end__ = 0x100027FF; 13 | 14 | /*-Sizes-*/ 15 | define symbol __ICFEDIT_size_cstack__ = 0x400; 16 | define symbol __ICFEDIT_size_heap__ = 0x200; 17 | /**** End of ICF editor section. ###ICF###*/ 18 | 19 | 20 | define memory mem with size = 4G; 21 | define region ROM_region = mem:[from __ICFEDIT_region_ROM_start__ to __ICFEDIT_region_ROM_end__]; 22 | define region RAM_region = mem:[from __ICFEDIT_region_RAM_start__ to __ICFEDIT_region_RAM_end__]; 23 | define region CCMSRAM_region = mem:[from __ICFEDIT_region_CCMSRAM_start__ to __ICFEDIT_region_CCMSRAM_end__]; 24 | 25 | define block CSTACK with alignment = 8, size = __ICFEDIT_size_cstack__ { }; 26 | define block HEAP with alignment = 8, size = __ICFEDIT_size_heap__ { }; 27 | 28 | initialize by copy { readwrite }; 29 | do not initialize { section .noinit }; 30 | 31 | place at address mem:__ICFEDIT_intvec_start__ { readonly section .intvec }; 32 | 33 | place in ROM_region { readonly }; 34 | place in RAM_region { readwrite, 35 | block CSTACK, block HEAP }; 36 | place in CCMSRAM_region { }; 37 | -------------------------------------------------------------------------------- /Drivers/CMSIS/Device/ST/STM32G4xx/Source/Templates/iar/linker/stm32g441xx_sram.icf: -------------------------------------------------------------------------------- 1 | /*###ICF### Section handled by ICF editor, don't touch! ****/ 2 | /*-Editor annotation file-*/ 3 | /* IcfEditorFile="$TOOLKIT_DIR$\config\ide\IcfEditor\cortex_v1_0.xml" */ 4 | /*-Specials-*/ 5 | define symbol __ICFEDIT_intvec_start__ = 0x20000000; 6 | /*-Memory Regions-*/ 7 | define symbol __ICFEDIT_region_ROM_start__ = 0x20000000; 8 | define symbol __ICFEDIT_region_ROM_end__ = 0x20001FFF; 9 | define symbol __ICFEDIT_region_RAM_start__ = 0x20002000; 10 | define symbol __ICFEDIT_region_RAM_end__ = 0x20007FFF; 11 | define symbol __ICFEDIT_region_CCMSRAM_start__ = 0x10000000; 12 | define symbol __ICFEDIT_region_CCMSRAM_end__ = 0x100027FF; 13 | 14 | /*-Sizes-*/ 15 | define symbol __ICFEDIT_size_cstack__ = 0x400; 16 | define symbol __ICFEDIT_size_heap__ = 0x200; 17 | /**** End of ICF editor section. ###ICF###*/ 18 | 19 | 20 | define memory mem with size = 4G; 21 | define region ROM_region = mem:[from __ICFEDIT_region_ROM_start__ to __ICFEDIT_region_ROM_end__]; 22 | define region RAM_region = mem:[from __ICFEDIT_region_RAM_start__ to __ICFEDIT_region_RAM_end__]; 23 | define region CCMSRAM_region = mem:[from __ICFEDIT_region_CCMSRAM_start__ to __ICFEDIT_region_CCMSRAM_end__]; 24 | 25 | define block CSTACK with alignment = 8, size = __ICFEDIT_size_cstack__ { }; 26 | define block HEAP with alignment = 8, size = __ICFEDIT_size_heap__ { }; 27 | 28 | initialize by copy { readwrite }; 29 | do not initialize { section .noinit }; 30 | 31 | place at address mem:__ICFEDIT_intvec_start__ { readonly section .intvec }; 32 | 33 | place in ROM_region { readonly }; 34 | place in RAM_region { readwrite, 35 | block CSTACK, block HEAP }; 36 | place in CCMSRAM_region { }; 37 | -------------------------------------------------------------------------------- /Drivers/CMSIS/Device/ST/STM32G4xx/Source/Templates/iar/linker/stm32g471xx_flash.icf: -------------------------------------------------------------------------------- 1 | /*###ICF### Section handled by ICF editor, don't touch! ****/ 2 | /*-Editor annotation file-*/ 3 | /* IcfEditorFile="$TOOLKIT_DIR$\config\ide\IcfEditor\cortex_v1_0.xml" */ 4 | /*-Specials-*/ 5 | define symbol __ICFEDIT_intvec_start__ = 0x08000000; 6 | /*-Memory Regions-*/ 7 | define symbol __ICFEDIT_region_ROM_start__ = 0x08000000; 8 | define symbol __ICFEDIT_region_ROM_end__ = 0x0807FFFF; 9 | define symbol __ICFEDIT_region_RAM_start__ = 0x20000000; 10 | define symbol __ICFEDIT_region_RAM_end__ = 0x2001FFFF; 11 | define symbol __ICFEDIT_region_CCMSRAM_start__ = 0x10000000; 12 | define symbol __ICFEDIT_region_CCMSRAM_end__ = 0x10007FFF; 13 | 14 | /*-Sizes-*/ 15 | define symbol __ICFEDIT_size_cstack__ = 0x400; 16 | define symbol __ICFEDIT_size_heap__ = 0x200; 17 | /**** End of ICF editor section. ###ICF###*/ 18 | 19 | 20 | define memory mem with size = 4G; 21 | define region ROM_region = mem:[from __ICFEDIT_region_ROM_start__ to __ICFEDIT_region_ROM_end__]; 22 | define region RAM_region = mem:[from __ICFEDIT_region_RAM_start__ to __ICFEDIT_region_RAM_end__]; 23 | define region CCMSRAM_region = mem:[from __ICFEDIT_region_CCMSRAM_start__ to __ICFEDIT_region_CCMSRAM_end__]; 24 | 25 | define block CSTACK with alignment = 8, size = __ICFEDIT_size_cstack__ { }; 26 | define block HEAP with alignment = 8, size = __ICFEDIT_size_heap__ { }; 27 | 28 | initialize by copy { readwrite }; 29 | do not initialize { section .noinit }; 30 | 31 | place at address mem:__ICFEDIT_intvec_start__ { readonly section .intvec }; 32 | 33 | place in ROM_region { readonly }; 34 | place in RAM_region { readwrite, 35 | block CSTACK, block HEAP }; 36 | place in CCMSRAM_region { }; 37 | -------------------------------------------------------------------------------- /Drivers/CMSIS/Device/ST/STM32G4xx/Source/Templates/iar/linker/stm32g471xx_sram.icf: -------------------------------------------------------------------------------- 1 | /*###ICF### Section handled by ICF editor, don't touch! ****/ 2 | /*-Editor annotation file-*/ 3 | /* IcfEditorFile="$TOOLKIT_DIR$\config\ide\IcfEditor\cortex_v1_0.xml" */ 4 | /*-Specials-*/ 5 | define symbol __ICFEDIT_intvec_start__ = 0x20000000; 6 | /*-Memory Regions-*/ 7 | define symbol __ICFEDIT_region_ROM_start__ = 0x20000000; 8 | define symbol __ICFEDIT_region_ROM_end__ = 0x20009FFF; 9 | define symbol __ICFEDIT_region_RAM_start__ = 0x2000A000; 10 | define symbol __ICFEDIT_region_RAM_end__ = 0x2001FFFF; 11 | define symbol __ICFEDIT_region_CCMSRAM_start__ = 0x10000000; 12 | define symbol __ICFEDIT_region_CCMSRAM_end__ = 0x10007FFF; 13 | 14 | /*-Sizes-*/ 15 | define symbol __ICFEDIT_size_cstack__ = 0x400; 16 | define symbol __ICFEDIT_size_heap__ = 0x200; 17 | /**** End of ICF editor section. ###ICF###*/ 18 | 19 | 20 | define memory mem with size = 4G; 21 | define region ROM_region = mem:[from __ICFEDIT_region_ROM_start__ to __ICFEDIT_region_ROM_end__]; 22 | define region RAM_region = mem:[from __ICFEDIT_region_RAM_start__ to __ICFEDIT_region_RAM_end__]; 23 | define region CCMSRAM_region = mem:[from __ICFEDIT_region_CCMSRAM_start__ to __ICFEDIT_region_CCMSRAM_end__]; 24 | 25 | define block CSTACK with alignment = 8, size = __ICFEDIT_size_cstack__ { }; 26 | define block HEAP with alignment = 8, size = __ICFEDIT_size_heap__ { }; 27 | 28 | initialize by copy { readwrite }; 29 | do not initialize { section .noinit }; 30 | 31 | place at address mem:__ICFEDIT_intvec_start__ { readonly section .intvec }; 32 | 33 | place in ROM_region { readonly }; 34 | place in RAM_region { readwrite, 35 | block CSTACK, block HEAP }; 36 | place in CCMSRAM_region { }; 37 | -------------------------------------------------------------------------------- /Drivers/CMSIS/Device/ST/STM32G4xx/Source/Templates/iar/linker/stm32g473xx_flash.icf: -------------------------------------------------------------------------------- 1 | /*###ICF### Section handled by ICF editor, don't touch! ****/ 2 | /*-Editor annotation file-*/ 3 | /* IcfEditorFile="$TOOLKIT_DIR$\config\ide\IcfEditor\cortex_v1_0.xml" */ 4 | /*-Specials-*/ 5 | define symbol __ICFEDIT_intvec_start__ = 0x08000000; 6 | /*-Memory Regions-*/ 7 | define symbol __ICFEDIT_region_ROM_start__ = 0x08000000; 8 | define symbol __ICFEDIT_region_ROM_end__ = 0x0807FFFF; 9 | define symbol __ICFEDIT_region_RAM_start__ = 0x20000000; 10 | define symbol __ICFEDIT_region_RAM_end__ = 0x2001FFFF; 11 | define symbol __ICFEDIT_region_CCMSRAM_start__ = 0x10000000; 12 | define symbol __ICFEDIT_region_CCMSRAM_end__ = 0x10007FFF; 13 | 14 | /*-Sizes-*/ 15 | define symbol __ICFEDIT_size_cstack__ = 0x400; 16 | define symbol __ICFEDIT_size_heap__ = 0x200; 17 | /**** End of ICF editor section. ###ICF###*/ 18 | 19 | 20 | define memory mem with size = 4G; 21 | define region ROM_region = mem:[from __ICFEDIT_region_ROM_start__ to __ICFEDIT_region_ROM_end__]; 22 | define region RAM_region = mem:[from __ICFEDIT_region_RAM_start__ to __ICFEDIT_region_RAM_end__]; 23 | define region CCMSRAM_region = mem:[from __ICFEDIT_region_CCMSRAM_start__ to __ICFEDIT_region_CCMSRAM_end__]; 24 | 25 | define block CSTACK with alignment = 8, size = __ICFEDIT_size_cstack__ { }; 26 | define block HEAP with alignment = 8, size = __ICFEDIT_size_heap__ { }; 27 | 28 | initialize by copy { readwrite }; 29 | do not initialize { section .noinit }; 30 | 31 | place at address mem:__ICFEDIT_intvec_start__ { readonly section .intvec }; 32 | 33 | place in ROM_region { readonly }; 34 | place in RAM_region { readwrite, 35 | block CSTACK, block HEAP }; 36 | place in CCMSRAM_region { }; 37 | -------------------------------------------------------------------------------- /Drivers/CMSIS/Device/ST/STM32G4xx/Source/Templates/iar/linker/stm32g473xx_sram.icf: -------------------------------------------------------------------------------- 1 | /*###ICF### Section handled by ICF editor, don't touch! ****/ 2 | /*-Editor annotation file-*/ 3 | /* IcfEditorFile="$TOOLKIT_DIR$\config\ide\IcfEditor\cortex_v1_0.xml" */ 4 | /*-Specials-*/ 5 | define symbol __ICFEDIT_intvec_start__ = 0x20000000; 6 | /*-Memory Regions-*/ 7 | define symbol __ICFEDIT_region_ROM_start__ = 0x20000000; 8 | define symbol __ICFEDIT_region_ROM_end__ = 0x20009FFF; 9 | define symbol __ICFEDIT_region_RAM_start__ = 0x2000A000; 10 | define symbol __ICFEDIT_region_RAM_end__ = 0x2001FFFF; 11 | define symbol __ICFEDIT_region_CCMSRAM_start__ = 0x10000000; 12 | define symbol __ICFEDIT_region_CCMSRAM_end__ = 0x10007FFF; 13 | 14 | /*-Sizes-*/ 15 | define symbol __ICFEDIT_size_cstack__ = 0x400; 16 | define symbol __ICFEDIT_size_heap__ = 0x200; 17 | /**** End of ICF editor section. ###ICF###*/ 18 | 19 | 20 | define memory mem with size = 4G; 21 | define region ROM_region = mem:[from __ICFEDIT_region_ROM_start__ to __ICFEDIT_region_ROM_end__]; 22 | define region RAM_region = mem:[from __ICFEDIT_region_RAM_start__ to __ICFEDIT_region_RAM_end__]; 23 | define region CCMSRAM_region = mem:[from __ICFEDIT_region_CCMSRAM_start__ to __ICFEDIT_region_CCMSRAM_end__]; 24 | 25 | define block CSTACK with alignment = 8, size = __ICFEDIT_size_cstack__ { }; 26 | define block HEAP with alignment = 8, size = __ICFEDIT_size_heap__ { }; 27 | 28 | initialize by copy { readwrite }; 29 | do not initialize { section .noinit }; 30 | 31 | place at address mem:__ICFEDIT_intvec_start__ { readonly section .intvec }; 32 | 33 | place in ROM_region { readonly }; 34 | place in RAM_region { readwrite, 35 | block CSTACK, block HEAP }; 36 | place in CCMSRAM_region { }; 37 | -------------------------------------------------------------------------------- /Drivers/CMSIS/Device/ST/STM32G4xx/Source/Templates/iar/linker/stm32g474xx_flash.icf: -------------------------------------------------------------------------------- 1 | /*###ICF### Section handled by ICF editor, don't touch! ****/ 2 | /*-Editor annotation file-*/ 3 | /* IcfEditorFile="$TOOLKIT_DIR$\config\ide\IcfEditor\cortex_v1_0.xml" */ 4 | /*-Specials-*/ 5 | define symbol __ICFEDIT_intvec_start__ = 0x08000000; 6 | /*-Memory Regions-*/ 7 | define symbol __ICFEDIT_region_ROM_start__ = 0x08000000; 8 | define symbol __ICFEDIT_region_ROM_end__ = 0x0807FFFF; 9 | define symbol __ICFEDIT_region_RAM_start__ = 0x20000000; 10 | define symbol __ICFEDIT_region_RAM_end__ = 0x2001FFFF; 11 | define symbol __ICFEDIT_region_CCMSRAM_start__ = 0x10000000; 12 | define symbol __ICFEDIT_region_CCMSRAM_end__ = 0x10007FFF; 13 | 14 | /*-Sizes-*/ 15 | define symbol __ICFEDIT_size_cstack__ = 0x400; 16 | define symbol __ICFEDIT_size_heap__ = 0x200; 17 | /**** End of ICF editor section. ###ICF###*/ 18 | 19 | 20 | define memory mem with size = 4G; 21 | define region ROM_region = mem:[from __ICFEDIT_region_ROM_start__ to __ICFEDIT_region_ROM_end__]; 22 | define region RAM_region = mem:[from __ICFEDIT_region_RAM_start__ to __ICFEDIT_region_RAM_end__]; 23 | define region CCMSRAM_region = mem:[from __ICFEDIT_region_CCMSRAM_start__ to __ICFEDIT_region_CCMSRAM_end__]; 24 | 25 | define block CSTACK with alignment = 8, size = __ICFEDIT_size_cstack__ { }; 26 | define block HEAP with alignment = 8, size = __ICFEDIT_size_heap__ { }; 27 | 28 | initialize by copy { readwrite }; 29 | do not initialize { section .noinit }; 30 | 31 | place at address mem:__ICFEDIT_intvec_start__ { readonly section .intvec }; 32 | 33 | place in ROM_region { readonly }; 34 | place in RAM_region { readwrite, 35 | block CSTACK, block HEAP }; 36 | place in CCMSRAM_region { }; 37 | -------------------------------------------------------------------------------- /Drivers/CMSIS/Device/ST/STM32G4xx/Source/Templates/iar/linker/stm32g474xx_sram.icf: -------------------------------------------------------------------------------- 1 | /*###ICF### Section handled by ICF editor, don't touch! ****/ 2 | /*-Editor annotation file-*/ 3 | /* IcfEditorFile="$TOOLKIT_DIR$\config\ide\IcfEditor\cortex_v1_0.xml" */ 4 | /*-Specials-*/ 5 | define symbol __ICFEDIT_intvec_start__ = 0x20000000; 6 | /*-Memory Regions-*/ 7 | define symbol __ICFEDIT_region_ROM_start__ = 0x20000000; 8 | define symbol __ICFEDIT_region_ROM_end__ = 0x20009FFF; 9 | define symbol __ICFEDIT_region_RAM_start__ = 0x2000A000; 10 | define symbol __ICFEDIT_region_RAM_end__ = 0x2001FFFF; 11 | define symbol __ICFEDIT_region_CCMSRAM_start__ = 0x10000000; 12 | define symbol __ICFEDIT_region_CCMSRAM_end__ = 0x10007FFF; 13 | 14 | /*-Sizes-*/ 15 | define symbol __ICFEDIT_size_cstack__ = 0x400; 16 | define symbol __ICFEDIT_size_heap__ = 0x200; 17 | /**** End of ICF editor section. ###ICF###*/ 18 | 19 | 20 | define memory mem with size = 4G; 21 | define region ROM_region = mem:[from __ICFEDIT_region_ROM_start__ to __ICFEDIT_region_ROM_end__]; 22 | define region RAM_region = mem:[from __ICFEDIT_region_RAM_start__ to __ICFEDIT_region_RAM_end__]; 23 | define region CCMSRAM_region = mem:[from __ICFEDIT_region_CCMSRAM_start__ to __ICFEDIT_region_CCMSRAM_end__]; 24 | 25 | define block CSTACK with alignment = 8, size = __ICFEDIT_size_cstack__ { }; 26 | define block HEAP with alignment = 8, size = __ICFEDIT_size_heap__ { }; 27 | 28 | initialize by copy { readwrite }; 29 | do not initialize { section .noinit }; 30 | 31 | place at address mem:__ICFEDIT_intvec_start__ { readonly section .intvec }; 32 | 33 | place in ROM_region { readonly }; 34 | place in RAM_region { readwrite, 35 | block CSTACK, block HEAP }; 36 | place in CCMSRAM_region { }; 37 | -------------------------------------------------------------------------------- /Drivers/CMSIS/Device/ST/STM32G4xx/Source/Templates/iar/linker/stm32g481xx_flash.icf: -------------------------------------------------------------------------------- 1 | /*###ICF### Section handled by ICF editor, don't touch! ****/ 2 | /*-Editor annotation file-*/ 3 | /* IcfEditorFile="$TOOLKIT_DIR$\config\ide\IcfEditor\cortex_v1_0.xml" */ 4 | /*-Specials-*/ 5 | define symbol __ICFEDIT_intvec_start__ = 0x08000000; 6 | /*-Memory Regions-*/ 7 | define symbol __ICFEDIT_region_ROM_start__ = 0x08000000; 8 | define symbol __ICFEDIT_region_ROM_end__ = 0x0807FFFF; 9 | define symbol __ICFEDIT_region_RAM_start__ = 0x20000000; 10 | define symbol __ICFEDIT_region_RAM_end__ = 0x2001FFFF; 11 | define symbol __ICFEDIT_region_CCMSRAM_start__ = 0x10000000; 12 | define symbol __ICFEDIT_region_CCMSRAM_end__ = 0x10007FFF; 13 | 14 | /*-Sizes-*/ 15 | define symbol __ICFEDIT_size_cstack__ = 0x400; 16 | define symbol __ICFEDIT_size_heap__ = 0x200; 17 | /**** End of ICF editor section. ###ICF###*/ 18 | 19 | 20 | define memory mem with size = 4G; 21 | define region ROM_region = mem:[from __ICFEDIT_region_ROM_start__ to __ICFEDIT_region_ROM_end__]; 22 | define region RAM_region = mem:[from __ICFEDIT_region_RAM_start__ to __ICFEDIT_region_RAM_end__]; 23 | define region CCMSRAM_region = mem:[from __ICFEDIT_region_CCMSRAM_start__ to __ICFEDIT_region_CCMSRAM_end__]; 24 | 25 | define block CSTACK with alignment = 8, size = __ICFEDIT_size_cstack__ { }; 26 | define block HEAP with alignment = 8, size = __ICFEDIT_size_heap__ { }; 27 | 28 | initialize by copy { readwrite }; 29 | do not initialize { section .noinit }; 30 | 31 | place at address mem:__ICFEDIT_intvec_start__ { readonly section .intvec }; 32 | 33 | place in ROM_region { readonly }; 34 | place in RAM_region { readwrite, 35 | block CSTACK, block HEAP }; 36 | place in CCMSRAM_region { }; 37 | -------------------------------------------------------------------------------- /Drivers/CMSIS/Device/ST/STM32G4xx/Source/Templates/iar/linker/stm32g481xx_sram.icf: -------------------------------------------------------------------------------- 1 | /*###ICF### Section handled by ICF editor, don't touch! ****/ 2 | /*-Editor annotation file-*/ 3 | /* IcfEditorFile="$TOOLKIT_DIR$\config\ide\IcfEditor\cortex_v1_0.xml" */ 4 | /*-Specials-*/ 5 | define symbol __ICFEDIT_intvec_start__ = 0x20000000; 6 | /*-Memory Regions-*/ 7 | define symbol __ICFEDIT_region_ROM_start__ = 0x20000000; 8 | define symbol __ICFEDIT_region_ROM_end__ = 0x20009FFF; 9 | define symbol __ICFEDIT_region_RAM_start__ = 0x2000A000; 10 | define symbol __ICFEDIT_region_RAM_end__ = 0x2001FFFF; 11 | define symbol __ICFEDIT_region_CCMSRAM_start__ = 0x10000000; 12 | define symbol __ICFEDIT_region_CCMSRAM_end__ = 0x10007FFF; 13 | 14 | /*-Sizes-*/ 15 | define symbol __ICFEDIT_size_cstack__ = 0x400; 16 | define symbol __ICFEDIT_size_heap__ = 0x200; 17 | /**** End of ICF editor section. ###ICF###*/ 18 | 19 | 20 | define memory mem with size = 4G; 21 | define region ROM_region = mem:[from __ICFEDIT_region_ROM_start__ to __ICFEDIT_region_ROM_end__]; 22 | define region RAM_region = mem:[from __ICFEDIT_region_RAM_start__ to __ICFEDIT_region_RAM_end__]; 23 | define region CCMSRAM_region = mem:[from __ICFEDIT_region_CCMSRAM_start__ to __ICFEDIT_region_CCMSRAM_end__]; 24 | 25 | define block CSTACK with alignment = 8, size = __ICFEDIT_size_cstack__ { }; 26 | define block HEAP with alignment = 8, size = __ICFEDIT_size_heap__ { }; 27 | 28 | initialize by copy { readwrite }; 29 | do not initialize { section .noinit }; 30 | 31 | place at address mem:__ICFEDIT_intvec_start__ { readonly section .intvec }; 32 | 33 | place in ROM_region { readonly }; 34 | place in RAM_region { readwrite, 35 | block CSTACK, block HEAP }; 36 | place in CCMSRAM_region { }; 37 | -------------------------------------------------------------------------------- /Drivers/CMSIS/Device/ST/STM32G4xx/Source/Templates/iar/linker/stm32g483xx_flash.icf: -------------------------------------------------------------------------------- 1 | /*###ICF### Section handled by ICF editor, don't touch! ****/ 2 | /*-Editor annotation file-*/ 3 | /* IcfEditorFile="$TOOLKIT_DIR$\config\ide\IcfEditor\cortex_v1_0.xml" */ 4 | /*-Specials-*/ 5 | define symbol __ICFEDIT_intvec_start__ = 0x08000000; 6 | /*-Memory Regions-*/ 7 | define symbol __ICFEDIT_region_ROM_start__ = 0x08000000; 8 | define symbol __ICFEDIT_region_ROM_end__ = 0x0807FFFF; 9 | define symbol __ICFEDIT_region_RAM_start__ = 0x20000000; 10 | define symbol __ICFEDIT_region_RAM_end__ = 0x2001FFFF; 11 | define symbol __ICFEDIT_region_CCMSRAM_start__ = 0x10000000; 12 | define symbol __ICFEDIT_region_CCMSRAM_end__ = 0x10007FFF; 13 | 14 | /*-Sizes-*/ 15 | define symbol __ICFEDIT_size_cstack__ = 0x400; 16 | define symbol __ICFEDIT_size_heap__ = 0x200; 17 | /**** End of ICF editor section. ###ICF###*/ 18 | 19 | 20 | define memory mem with size = 4G; 21 | define region ROM_region = mem:[from __ICFEDIT_region_ROM_start__ to __ICFEDIT_region_ROM_end__]; 22 | define region RAM_region = mem:[from __ICFEDIT_region_RAM_start__ to __ICFEDIT_region_RAM_end__]; 23 | define region CCMSRAM_region = mem:[from __ICFEDIT_region_CCMSRAM_start__ to __ICFEDIT_region_CCMSRAM_end__]; 24 | 25 | define block CSTACK with alignment = 8, size = __ICFEDIT_size_cstack__ { }; 26 | define block HEAP with alignment = 8, size = __ICFEDIT_size_heap__ { }; 27 | 28 | initialize by copy { readwrite }; 29 | do not initialize { section .noinit }; 30 | 31 | place at address mem:__ICFEDIT_intvec_start__ { readonly section .intvec }; 32 | 33 | place in ROM_region { readonly }; 34 | place in RAM_region { readwrite, 35 | block CSTACK, block HEAP }; 36 | place in CCMSRAM_region { }; 37 | -------------------------------------------------------------------------------- /Drivers/CMSIS/Device/ST/STM32G4xx/Source/Templates/iar/linker/stm32g483xx_sram.icf: -------------------------------------------------------------------------------- 1 | /*###ICF### Section handled by ICF editor, don't touch! ****/ 2 | /*-Editor annotation file-*/ 3 | /* IcfEditorFile="$TOOLKIT_DIR$\config\ide\IcfEditor\cortex_v1_0.xml" */ 4 | /*-Specials-*/ 5 | define symbol __ICFEDIT_intvec_start__ = 0x20000000; 6 | /*-Memory Regions-*/ 7 | define symbol __ICFEDIT_region_ROM_start__ = 0x20000000; 8 | define symbol __ICFEDIT_region_ROM_end__ = 0x20009FFF; 9 | define symbol __ICFEDIT_region_RAM_start__ = 0x2000A000; 10 | define symbol __ICFEDIT_region_RAM_end__ = 0x2001FFFF; 11 | define symbol __ICFEDIT_region_CCMSRAM_start__ = 0x10000000; 12 | define symbol __ICFEDIT_region_CCMSRAM_end__ = 0x10007FFF; 13 | 14 | /*-Sizes-*/ 15 | define symbol __ICFEDIT_size_cstack__ = 0x400; 16 | define symbol __ICFEDIT_size_heap__ = 0x200; 17 | /**** End of ICF editor section. ###ICF###*/ 18 | 19 | 20 | define memory mem with size = 4G; 21 | define region ROM_region = mem:[from __ICFEDIT_region_ROM_start__ to __ICFEDIT_region_ROM_end__]; 22 | define region RAM_region = mem:[from __ICFEDIT_region_RAM_start__ to __ICFEDIT_region_RAM_end__]; 23 | define region CCMSRAM_region = mem:[from __ICFEDIT_region_CCMSRAM_start__ to __ICFEDIT_region_CCMSRAM_end__]; 24 | 25 | define block CSTACK with alignment = 8, size = __ICFEDIT_size_cstack__ { }; 26 | define block HEAP with alignment = 8, size = __ICFEDIT_size_heap__ { }; 27 | 28 | initialize by copy { readwrite }; 29 | do not initialize { section .noinit }; 30 | 31 | place at address mem:__ICFEDIT_intvec_start__ { readonly section .intvec }; 32 | 33 | place in ROM_region { readonly }; 34 | place in RAM_region { readwrite, 35 | block CSTACK, block HEAP }; 36 | place in CCMSRAM_region { }; 37 | -------------------------------------------------------------------------------- /Drivers/CMSIS/Device/ST/STM32G4xx/Source/Templates/iar/linker/stm32g484xx_flash.icf: -------------------------------------------------------------------------------- 1 | /*###ICF### Section handled by ICF editor, don't touch! ****/ 2 | /*-Editor annotation file-*/ 3 | /* IcfEditorFile="$TOOLKIT_DIR$\config\ide\IcfEditor\cortex_v1_0.xml" */ 4 | /*-Specials-*/ 5 | define symbol __ICFEDIT_intvec_start__ = 0x08000000; 6 | /*-Memory Regions-*/ 7 | define symbol __ICFEDIT_region_ROM_start__ = 0x08000000; 8 | define symbol __ICFEDIT_region_ROM_end__ = 0x0807FFFF; 9 | define symbol __ICFEDIT_region_RAM_start__ = 0x20000000; 10 | define symbol __ICFEDIT_region_RAM_end__ = 0x2001FFFF; 11 | define symbol __ICFEDIT_region_CCMSRAM_start__ = 0x10000000; 12 | define symbol __ICFEDIT_region_CCMSRAM_end__ = 0x10007FFF; 13 | 14 | /*-Sizes-*/ 15 | define symbol __ICFEDIT_size_cstack__ = 0x400; 16 | define symbol __ICFEDIT_size_heap__ = 0x200; 17 | /**** End of ICF editor section. ###ICF###*/ 18 | 19 | 20 | define memory mem with size = 4G; 21 | define region ROM_region = mem:[from __ICFEDIT_region_ROM_start__ to __ICFEDIT_region_ROM_end__]; 22 | define region RAM_region = mem:[from __ICFEDIT_region_RAM_start__ to __ICFEDIT_region_RAM_end__]; 23 | define region CCMSRAM_region = mem:[from __ICFEDIT_region_CCMSRAM_start__ to __ICFEDIT_region_CCMSRAM_end__]; 24 | 25 | define block CSTACK with alignment = 8, size = __ICFEDIT_size_cstack__ { }; 26 | define block HEAP with alignment = 8, size = __ICFEDIT_size_heap__ { }; 27 | 28 | initialize by copy { readwrite }; 29 | do not initialize { section .noinit }; 30 | 31 | place at address mem:__ICFEDIT_intvec_start__ { readonly section .intvec }; 32 | 33 | place in ROM_region { readonly }; 34 | place in RAM_region { readwrite, 35 | block CSTACK, block HEAP }; 36 | place in CCMSRAM_region { }; 37 | -------------------------------------------------------------------------------- /Drivers/CMSIS/Device/ST/STM32G4xx/Source/Templates/iar/linker/stm32g484xx_sram.icf: -------------------------------------------------------------------------------- 1 | /*###ICF### Section handled by ICF editor, don't touch! ****/ 2 | /*-Editor annotation file-*/ 3 | /* IcfEditorFile="$TOOLKIT_DIR$\config\ide\IcfEditor\cortex_v1_0.xml" */ 4 | /*-Specials-*/ 5 | define symbol __ICFEDIT_intvec_start__ = 0x20000000; 6 | /*-Memory Regions-*/ 7 | define symbol __ICFEDIT_region_ROM_start__ = 0x20000000; 8 | define symbol __ICFEDIT_region_ROM_end__ = 0x20009FFF; 9 | define symbol __ICFEDIT_region_RAM_start__ = 0x2000A000; 10 | define symbol __ICFEDIT_region_RAM_end__ = 0x2001FFFF; 11 | define symbol __ICFEDIT_region_CCMSRAM_start__ = 0x10000000; 12 | define symbol __ICFEDIT_region_CCMSRAM_end__ = 0x10007FFF; 13 | 14 | /*-Sizes-*/ 15 | define symbol __ICFEDIT_size_cstack__ = 0x400; 16 | define symbol __ICFEDIT_size_heap__ = 0x200; 17 | /**** End of ICF editor section. ###ICF###*/ 18 | 19 | 20 | define memory mem with size = 4G; 21 | define region ROM_region = mem:[from __ICFEDIT_region_ROM_start__ to __ICFEDIT_region_ROM_end__]; 22 | define region RAM_region = mem:[from __ICFEDIT_region_RAM_start__ to __ICFEDIT_region_RAM_end__]; 23 | define region CCMSRAM_region = mem:[from __ICFEDIT_region_CCMSRAM_start__ to __ICFEDIT_region_CCMSRAM_end__]; 24 | 25 | define block CSTACK with alignment = 8, size = __ICFEDIT_size_cstack__ { }; 26 | define block HEAP with alignment = 8, size = __ICFEDIT_size_heap__ { }; 27 | 28 | initialize by copy { readwrite }; 29 | do not initialize { section .noinit }; 30 | 31 | place at address mem:__ICFEDIT_intvec_start__ { readonly section .intvec }; 32 | 33 | place in ROM_region { readonly }; 34 | place in RAM_region { readwrite, 35 | block CSTACK, block HEAP }; 36 | place in CCMSRAM_region { }; 37 | -------------------------------------------------------------------------------- /Drivers/CMSIS/Device/ST/STM32G4xx/Source/Templates/iar/linker/stm32g491xx_flash.icf: -------------------------------------------------------------------------------- 1 | /*###ICF### Section handled by ICF editor, don't touch! ****/ 2 | /*-Editor annotation file-*/ 3 | /* IcfEditorFile="$TOOLKIT_DIR$\config\ide\IcfEditor\cortex_v1_0.xml" */ 4 | /*-Specials-*/ 5 | define symbol __ICFEDIT_intvec_start__ = 0x08000000; 6 | /*-Memory Regions-*/ 7 | define symbol __ICFEDIT_region_ROM_start__ = 0x08000000; 8 | define symbol __ICFEDIT_region_ROM_end__ = 0x0807FFFF; 9 | define symbol __ICFEDIT_region_RAM_start__ = 0x20000000; 10 | define symbol __ICFEDIT_region_RAM_end__ = 0x2001FFFF; 11 | define symbol __ICFEDIT_region_CCMSRAM_start__ = 0x10000000; 12 | define symbol __ICFEDIT_region_CCMSRAM_end__ = 0x10003FFF; 13 | 14 | /*-Sizes-*/ 15 | define symbol __ICFEDIT_size_cstack__ = 0x400; 16 | define symbol __ICFEDIT_size_heap__ = 0x200; 17 | /**** End of ICF editor section. ###ICF###*/ 18 | 19 | 20 | define memory mem with size = 4G; 21 | define region ROM_region = mem:[from __ICFEDIT_region_ROM_start__ to __ICFEDIT_region_ROM_end__]; 22 | define region RAM_region = mem:[from __ICFEDIT_region_RAM_start__ to __ICFEDIT_region_RAM_end__]; 23 | define region CCMSRAM_region = mem:[from __ICFEDIT_region_CCMSRAM_start__ to __ICFEDIT_region_CCMSRAM_end__]; 24 | 25 | define block CSTACK with alignment = 8, size = __ICFEDIT_size_cstack__ { }; 26 | define block HEAP with alignment = 8, size = __ICFEDIT_size_heap__ { }; 27 | 28 | initialize by copy { readwrite }; 29 | do not initialize { section .noinit }; 30 | 31 | place at address mem:__ICFEDIT_intvec_start__ { readonly section .intvec }; 32 | 33 | place in ROM_region { readonly }; 34 | place in RAM_region { readwrite, 35 | block CSTACK, block HEAP }; 36 | place in CCMSRAM_region { }; 37 | -------------------------------------------------------------------------------- /Drivers/CMSIS/Device/ST/STM32G4xx/Source/Templates/iar/linker/stm32g491xx_sram.icf: -------------------------------------------------------------------------------- 1 | /*###ICF### Section handled by ICF editor, don't touch! ****/ 2 | /*-Editor annotation file-*/ 3 | /* IcfEditorFile="$TOOLKIT_DIR$\config\ide\IcfEditor\cortex_v1_0.xml" */ 4 | /*-Specials-*/ 5 | define symbol __ICFEDIT_intvec_start__ = 0x20000000; 6 | /*-Memory Regions-*/ 7 | define symbol __ICFEDIT_region_ROM_start__ = 0x20000000; 8 | define symbol __ICFEDIT_region_ROM_end__ = 0x20009FFF; 9 | define symbol __ICFEDIT_region_RAM_start__ = 0x2000A000; 10 | define symbol __ICFEDIT_region_RAM_end__ = 0x2001FFFF; 11 | define symbol __ICFEDIT_region_CCMSRAM_start__ = 0x10000000; 12 | define symbol __ICFEDIT_region_CCMSRAM_end__ = 0x10003FFF; 13 | 14 | /*-Sizes-*/ 15 | define symbol __ICFEDIT_size_cstack__ = 0x400; 16 | define symbol __ICFEDIT_size_heap__ = 0x200; 17 | /**** End of ICF editor section. ###ICF###*/ 18 | 19 | 20 | define memory mem with size = 4G; 21 | define region ROM_region = mem:[from __ICFEDIT_region_ROM_start__ to __ICFEDIT_region_ROM_end__]; 22 | define region RAM_region = mem:[from __ICFEDIT_region_RAM_start__ to __ICFEDIT_region_RAM_end__]; 23 | define region CCMSRAM_region = mem:[from __ICFEDIT_region_CCMSRAM_start__ to __ICFEDIT_region_CCMSRAM_end__]; 24 | 25 | define block CSTACK with alignment = 8, size = __ICFEDIT_size_cstack__ { }; 26 | define block HEAP with alignment = 8, size = __ICFEDIT_size_heap__ { }; 27 | 28 | initialize by copy { readwrite }; 29 | do not initialize { section .noinit }; 30 | 31 | place at address mem:__ICFEDIT_intvec_start__ { readonly section .intvec }; 32 | 33 | place in ROM_region { readonly }; 34 | place in RAM_region { readwrite, 35 | block CSTACK, block HEAP }; 36 | place in CCMSRAM_region { }; 37 | -------------------------------------------------------------------------------- /Drivers/CMSIS/Device/ST/STM32G4xx/Source/Templates/iar/linker/stm32g4a1xx_flash.icf: -------------------------------------------------------------------------------- 1 | /*###ICF### Section handled by ICF editor, don't touch! ****/ 2 | /*-Editor annotation file-*/ 3 | /* IcfEditorFile="$TOOLKIT_DIR$\config\ide\IcfEditor\cortex_v1_0.xml" */ 4 | /*-Specials-*/ 5 | define symbol __ICFEDIT_intvec_start__ = 0x08000000; 6 | /*-Memory Regions-*/ 7 | define symbol __ICFEDIT_region_ROM_start__ = 0x08000000; 8 | define symbol __ICFEDIT_region_ROM_end__ = 0x0807FFFF; 9 | define symbol __ICFEDIT_region_RAM_start__ = 0x20000000; 10 | define symbol __ICFEDIT_region_RAM_end__ = 0x2001FFFF; 11 | define symbol __ICFEDIT_region_CCMSRAM_start__ = 0x10000000; 12 | define symbol __ICFEDIT_region_CCMSRAM_end__ = 0x10003FFF; 13 | 14 | /*-Sizes-*/ 15 | define symbol __ICFEDIT_size_cstack__ = 0x400; 16 | define symbol __ICFEDIT_size_heap__ = 0x200; 17 | /**** End of ICF editor section. ###ICF###*/ 18 | 19 | 20 | define memory mem with size = 4G; 21 | define region ROM_region = mem:[from __ICFEDIT_region_ROM_start__ to __ICFEDIT_region_ROM_end__]; 22 | define region RAM_region = mem:[from __ICFEDIT_region_RAM_start__ to __ICFEDIT_region_RAM_end__]; 23 | define region CCMSRAM_region = mem:[from __ICFEDIT_region_CCMSRAM_start__ to __ICFEDIT_region_CCMSRAM_end__]; 24 | 25 | define block CSTACK with alignment = 8, size = __ICFEDIT_size_cstack__ { }; 26 | define block HEAP with alignment = 8, size = __ICFEDIT_size_heap__ { }; 27 | 28 | initialize by copy { readwrite }; 29 | do not initialize { section .noinit }; 30 | 31 | place at address mem:__ICFEDIT_intvec_start__ { readonly section .intvec }; 32 | 33 | place in ROM_region { readonly }; 34 | place in RAM_region { readwrite, 35 | block CSTACK, block HEAP }; 36 | place in CCMSRAM_region { }; 37 | -------------------------------------------------------------------------------- /Drivers/CMSIS/Device/ST/STM32G4xx/Source/Templates/iar/linker/stm32g4a1xx_sram.icf: -------------------------------------------------------------------------------- 1 | /*###ICF### Section handled by ICF editor, don't touch! ****/ 2 | /*-Editor annotation file-*/ 3 | /* IcfEditorFile="$TOOLKIT_DIR$\config\ide\IcfEditor\cortex_v1_0.xml" */ 4 | /*-Specials-*/ 5 | define symbol __ICFEDIT_intvec_start__ = 0x20000000; 6 | /*-Memory Regions-*/ 7 | define symbol __ICFEDIT_region_ROM_start__ = 0x20000000; 8 | define symbol __ICFEDIT_region_ROM_end__ = 0x20009FFF; 9 | define symbol __ICFEDIT_region_RAM_start__ = 0x2000A000; 10 | define symbol __ICFEDIT_region_RAM_end__ = 0x2001FFFF; 11 | define symbol __ICFEDIT_region_CCMSRAM_start__ = 0x10000000; 12 | define symbol __ICFEDIT_region_CCMSRAM_end__ = 0x10003FFF; 13 | 14 | /*-Sizes-*/ 15 | define symbol __ICFEDIT_size_cstack__ = 0x400; 16 | define symbol __ICFEDIT_size_heap__ = 0x200; 17 | /**** End of ICF editor section. ###ICF###*/ 18 | 19 | 20 | define memory mem with size = 4G; 21 | define region ROM_region = mem:[from __ICFEDIT_region_ROM_start__ to __ICFEDIT_region_ROM_end__]; 22 | define region RAM_region = mem:[from __ICFEDIT_region_RAM_start__ to __ICFEDIT_region_RAM_end__]; 23 | define region CCMSRAM_region = mem:[from __ICFEDIT_region_CCMSRAM_start__ to __ICFEDIT_region_CCMSRAM_end__]; 24 | 25 | define block CSTACK with alignment = 8, size = __ICFEDIT_size_cstack__ { }; 26 | define block HEAP with alignment = 8, size = __ICFEDIT_size_heap__ { }; 27 | 28 | initialize by copy { readwrite }; 29 | do not initialize { section .noinit }; 30 | 31 | place at address mem:__ICFEDIT_intvec_start__ { readonly section .intvec }; 32 | 33 | place in ROM_region { readonly }; 34 | place in RAM_region { readwrite, 35 | block CSTACK, block HEAP }; 36 | place in CCMSRAM_region { }; 37 | -------------------------------------------------------------------------------- /Drivers/CMSIS/Device/ST/STM32G4xx/Source/Templates/iar/linker/stm32gbk1cb_flash.icf: -------------------------------------------------------------------------------- 1 | /*###ICF### Section handled by ICF editor, don't touch! ****/ 2 | /*-Editor annotation file-*/ 3 | /* IcfEditorFile="$TOOLKIT_DIR$\config\ide\IcfEditor\cortex_v1_0.xml" */ 4 | /*-Specials-*/ 5 | define symbol __ICFEDIT_intvec_start__ = 0x08000000; 6 | /*-Memory Regions-*/ 7 | define symbol __ICFEDIT_region_ROM_start__ = 0x08000000; 8 | define symbol __ICFEDIT_region_ROM_end__ = 0x0801FFFF; 9 | define symbol __ICFEDIT_region_RAM_start__ = 0x20000000; 10 | define symbol __ICFEDIT_region_RAM_end__ = 0x20007FFF; 11 | define symbol __ICFEDIT_region_CCMSRAM_start__ = 0x10000000; 12 | define symbol __ICFEDIT_region_CCMSRAM_end__ = 0x100027FF; 13 | 14 | /*-Sizes-*/ 15 | define symbol __ICFEDIT_size_cstack__ = 0x400; 16 | define symbol __ICFEDIT_size_heap__ = 0x200; 17 | /**** End of ICF editor section. ###ICF###*/ 18 | 19 | 20 | define memory mem with size = 4G; 21 | define region ROM_region = mem:[from __ICFEDIT_region_ROM_start__ to __ICFEDIT_region_ROM_end__]; 22 | define region RAM_region = mem:[from __ICFEDIT_region_RAM_start__ to __ICFEDIT_region_RAM_end__]; 23 | define region CCMSRAM_region = mem:[from __ICFEDIT_region_CCMSRAM_start__ to __ICFEDIT_region_CCMSRAM_end__]; 24 | 25 | define block CSTACK with alignment = 8, size = __ICFEDIT_size_cstack__ { }; 26 | define block HEAP with alignment = 8, size = __ICFEDIT_size_heap__ { }; 27 | 28 | initialize by copy { readwrite }; 29 | do not initialize { section .noinit }; 30 | 31 | place at address mem:__ICFEDIT_intvec_start__ { readonly section .intvec }; 32 | 33 | place in ROM_region { readonly }; 34 | place in RAM_region { readwrite, 35 | block CSTACK, block HEAP }; 36 | place in CCMSRAM_region { }; 37 | -------------------------------------------------------------------------------- /Drivers/CMSIS/Device/ST/STM32G4xx/Source/Templates/iar/linker/stm32gbk1cb_sram.icf: -------------------------------------------------------------------------------- 1 | /*###ICF### Section handled by ICF editor, don't touch! ****/ 2 | /*-Editor annotation file-*/ 3 | /* IcfEditorFile="$TOOLKIT_DIR$\config\ide\IcfEditor\cortex_v1_0.xml" */ 4 | /*-Specials-*/ 5 | define symbol __ICFEDIT_intvec_start__ = 0x20000000; 6 | /*-Memory Regions-*/ 7 | define symbol __ICFEDIT_region_ROM_start__ = 0x20000000; 8 | define symbol __ICFEDIT_region_ROM_end__ = 0x20001FFF; 9 | define symbol __ICFEDIT_region_RAM_start__ = 0x20002000; 10 | define symbol __ICFEDIT_region_RAM_end__ = 0x20007FFF; 11 | define symbol __ICFEDIT_region_CCMSRAM_start__ = 0x10000000; 12 | define symbol __ICFEDIT_region_CCMSRAM_end__ = 0x100027FF; 13 | 14 | /*-Sizes-*/ 15 | define symbol __ICFEDIT_size_cstack__ = 0x400; 16 | define symbol __ICFEDIT_size_heap__ = 0x200; 17 | /**** End of ICF editor section. ###ICF###*/ 18 | 19 | 20 | define memory mem with size = 4G; 21 | define region ROM_region = mem:[from __ICFEDIT_region_ROM_start__ to __ICFEDIT_region_ROM_end__]; 22 | define region RAM_region = mem:[from __ICFEDIT_region_RAM_start__ to __ICFEDIT_region_RAM_end__]; 23 | define region CCMSRAM_region = mem:[from __ICFEDIT_region_CCMSRAM_start__ to __ICFEDIT_region_CCMSRAM_end__]; 24 | 25 | define block CSTACK with alignment = 8, size = __ICFEDIT_size_cstack__ { }; 26 | define block HEAP with alignment = 8, size = __ICFEDIT_size_heap__ { }; 27 | 28 | initialize by copy { readwrite }; 29 | do not initialize { section .noinit }; 30 | 31 | place at address mem:__ICFEDIT_intvec_start__ { readonly section .intvec }; 32 | 33 | place in ROM_region { readonly }; 34 | place in RAM_region { readwrite, 35 | block CSTACK, block HEAP }; 36 | place in CCMSRAM_region { }; 37 | -------------------------------------------------------------------------------- /Drivers/CMSIS/Include/cmsis_version.h: -------------------------------------------------------------------------------- 1 | /**************************************************************************//** 2 | * @file cmsis_version.h 3 | * @brief CMSIS Core(M) Version definitions 4 | * @version V5.0.3 5 | * @date 24. June 2019 6 | ******************************************************************************/ 7 | /* 8 | * Copyright (c) 2009-2019 ARM Limited. All rights reserved. 9 | * 10 | * SPDX-License-Identifier: Apache-2.0 11 | * 12 | * Licensed under the Apache License, Version 2.0 (the License); you may 13 | * not use this file except in compliance with the License. 14 | * You may obtain a copy of the License at 15 | * 16 | * www.apache.org/licenses/LICENSE-2.0 17 | * 18 | * Unless required by applicable law or agreed to in writing, software 19 | * distributed under the License is distributed on an AS IS BASIS, WITHOUT 20 | * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 21 | * See the License for the specific language governing permissions and 22 | * limitations under the License. 23 | */ 24 | 25 | #if defined ( __ICCARM__ ) 26 | #pragma system_include /* treat file as system include file for MISRA check */ 27 | #elif defined (__clang__) 28 | #pragma clang system_header /* treat file as system include file */ 29 | #endif 30 | 31 | #ifndef __CMSIS_VERSION_H 32 | #define __CMSIS_VERSION_H 33 | 34 | /* CMSIS Version definitions */ 35 | #define __CM_CMSIS_VERSION_MAIN ( 5U) /*!< [31:16] CMSIS Core(M) main version */ 36 | #define __CM_CMSIS_VERSION_SUB ( 3U) /*!< [15:0] CMSIS Core(M) sub version */ 37 | #define __CM_CMSIS_VERSION ((__CM_CMSIS_VERSION_MAIN << 16U) | \ 38 | __CM_CMSIS_VERSION_SUB ) /*!< CMSIS Core(M) version number */ 39 | #endif 40 | -------------------------------------------------------------------------------- /MDK-ARM/.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "files.associations": { 3 | "sys.h": "c", 4 | "stm32g4xx.h": "c", 5 | "per_conf.h": "c", 6 | "led.h": "c", 7 | "SPI.H": "cpp", 8 | "st7735_lcd_init.h": "c", 9 | "timer.h": "c", 10 | "FONT.H": "cpp", 11 | "adc.h": "c", 12 | "main.h": "c", 13 | "dma.h": "c", 14 | "osc.h": "c", 15 | "delay.h": "c", 16 | "dac.h": "c", 17 | "arm_math.h": "c", 18 | "stm32g4xx_hal.h": "c", 19 | "stm32g4xx_hal_conf.h": "c", 20 | "stm32g4xx_ll_usb.h": "c", 21 | "stm32g4xx_hal_def.h": "c", 22 | "usbd_conf.h": "c", 23 | "usbd_core.h": "c", 24 | "stm32g4xx_hal_pcd.h": "c", 25 | "stm32g4xx_hal_pcd_ex.h": "c", 26 | "usbd_ctlreq.h": "c", 27 | "usbd_def.h": "c", 28 | "usbd_ioreq.h": "c", 29 | "usbd_cdc_if.h": "c", 30 | "usbd_cdc.h": "c", 31 | "usb_device.h": "c", 32 | "usbd_desc.h": "c", 33 | "usb_top.h": "c", 34 | "ff.h": "c", 35 | "integer.h": "c", 36 | "malloc.h": "c", 37 | "app_fatfs.h": "c", 38 | "sdmmc.h": "c", 39 | "exfuns.h": "c", 40 | "usr_sd_app.h": "c", 41 | "w25qxx.h": "c", 42 | "diskio.h": "c", 43 | "usbd_mult.h": "c", 44 | "cstddef": "c", 45 | "limits": "c", 46 | "type_traits": "c", 47 | "fatfs_app.h": "c", 48 | "pic1.h": "c" 49 | } 50 | } -------------------------------------------------------------------------------- /MDK-ARM/.vscode/uv4.log.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G4_OSC/9778f077c6a447817cad48cecee05a23d305e67c/MDK-ARM/.vscode/uv4.log.lock -------------------------------------------------------------------------------- /MDK-ARM/Core/Inc/main.h: -------------------------------------------------------------------------------- 1 | /* 2 | * @Description: 3 | * @FilePath: \MDK-ARM\Core\Inc\main.h 4 | * @Version: 2.0 5 | * @Autor: Eltecz 6 | * @Date: 2022-08-22 11:40:42 7 | * @LastEditors: Eltecz 8 | * @LastEditTime: 2022-09-04 17:08:58 9 | */ 10 | /* USER CODE BEGIN Header */ 11 | /** 12 | ****************************************************************************** 13 | * @file : main.h 14 | * @brief : Header for main.c file. 15 | * This file contains the common defines of the application. 16 | ****************************************************************************** 17 | * @attention 18 | * 19 | * Copyright (c) 2022 STMicroelectronics. 20 | * All rights reserved. 21 | * 22 | * This software is licensed under terms that can be found in the LICENSE file 23 | * in the root directory of this software component. 24 | * If no LICENSE file comes with this software, it is provided AS-IS. 25 | * 26 | ****************************************************************************** 27 | */ 28 | /* USER CODE END Header */ 29 | 30 | /* Define to prevent recursive inclusion -------------------------------------*/ 31 | #ifndef __MAIN_H 32 | #define __MAIN_H 33 | 34 | #ifdef __cplusplus 35 | extern "C" { 36 | #endif 37 | 38 | #ifdef __cplusplus 39 | } 40 | #endif 41 | 42 | #endif /* __MAIN_H */ 43 | -------------------------------------------------------------------------------- /MDK-ARM/Core/Inc/stm32g4xx_it.h: -------------------------------------------------------------------------------- 1 | /* 2 | * @Description: 3 | * @FilePath: \MDK-ARM\Core\Inc\stm32g4xx_it.h 4 | * @Version: 2.0 5 | * @Autor: Eltecz 6 | * @Date: 2022-08-22 11:40:42 7 | * @LastEditors: Eltecz 8 | * @LastEditTime: 2022-08-22 11:46:00 9 | */ 10 | /* USER CODE BEGIN Header */ 11 | /** 12 | ****************************************************************************** 13 | * @file stm32g4xx_it.h 14 | * @brief This file contains the headers of the interrupt handlers. 15 | ****************************************************************************** 16 | * @attention 17 | * 18 | * Copyright (c) 2022 STMicroelectronics. 19 | * All rights reserved. 20 | * 21 | * This software is licensed under terms that can be found in the LICENSE file 22 | * in the root directory of this software component. 23 | * If no LICENSE file comes with this software, it is provided AS-IS. 24 | * 25 | ****************************************************************************** 26 | */ 27 | /* USER CODE END Header */ 28 | 29 | /* Define to prevent recursive inclusion -------------------------------------*/ 30 | #ifndef __STM32G4xx_IT_H 31 | #define __STM32G4xx_IT_H 32 | 33 | #ifdef __cplusplus 34 | extern "C" { 35 | #endif 36 | 37 | /* Private includes ----------------------------------------------------------*/ 38 | /* USER CODE BEGIN Includes */ 39 | 40 | /* USER CODE END Includes */ 41 | 42 | /* Exported types ------------------------------------------------------------*/ 43 | /* USER CODE BEGIN ET */ 44 | 45 | /* USER CODE END ET */ 46 | 47 | /* Exported constants --------------------------------------------------------*/ 48 | /* USER CODE BEGIN EC */ 49 | 50 | /* USER CODE END EC */ 51 | 52 | /* Exported macro ------------------------------------------------------------*/ 53 | /* USER CODE BEGIN EM */ 54 | 55 | /* USER CODE END EM */ 56 | 57 | /* Exported functions prototypes ---------------------------------------------*/ 58 | void NMI_Handler(void); 59 | void HardFault_Handler(void); 60 | void MemManage_Handler(void); 61 | void BusFault_Handler(void); 62 | void UsageFault_Handler(void); 63 | void SVC_Handler(void); 64 | void DebugMon_Handler(void); 65 | void PendSV_Handler(void); 66 | void SysTick_Handler(void); 67 | /* USER CODE BEGIN EFP */ 68 | 69 | /* USER CODE END EFP */ 70 | 71 | #ifdef __cplusplus 72 | } 73 | #endif 74 | 75 | #endif /* __STM32G4xx_IT_H */ 76 | -------------------------------------------------------------------------------- /MDK-ARM/Core/Src/main.c: -------------------------------------------------------------------------------- 1 | /* 2 | * @Description: 3 | * @FilePath: \MDK-ARM\Core\Src\main.c 4 | * @Version: 2.0 5 | * @Autor: Eltecz 6 | * @Date: 2022-08-22 11:40:42 7 | * @LastEditors: Eltecz 8 | * @LastEditTime: 2022-10-27 09:28:32 9 | */ 10 | /* 11 | 12 | */ 13 | #include "main.h" 14 | #include "per_conf.h" 15 | #include "pic1.h" 16 | u8 i=0; 17 | char j=0; 18 | char s[20]; 19 | u32 k=0; 20 | u32 l; 21 | 22 | 23 | int main(void) 24 | { 25 | Stm32_Clock_Init(MAIN_FOSC/2,2,2,2); 26 | delay_init(MAIN_FOSC); 27 | gpio_init(); 28 | LCD_Init(); 29 | // uart1_init(MAIN_FOSC,921600); 30 | // printf("done!\r\n"); 31 | osc_init(); 32 | LCD_Clear(WHITE); 33 | LCD_ShowString(30,30,"STM32G431_OSC",BLACK,WHITE,1); 34 | LCD_ShowString(30,42,"Eltecz",BLACK,WHITE,1); 35 | LCD_ShowString(30,54,"Non-Commercial",RED,WHITE,1); 36 | delay_ms(1000); 37 | LCD_Clear(BLACK); 38 | dac_init(); 39 | while (1) 40 | { 41 | osc_app(); 42 | } 43 | while (0) 44 | { 45 | for(k=0;i<320*172;k++){ 46 | LCD_DrawPoint(k%320,k/320,(gImage_pic1[k<<1])+(gImage_pic1[(k<<1)+1]<<8)); 47 | } 48 | } 49 | } 50 | -------------------------------------------------------------------------------- /MDK-ARM/EventRecorderStub.scvd: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /MDK-ARM/RTE/_uart-test/RTE_Components.h: -------------------------------------------------------------------------------- 1 | 2 | /* 3 | * Auto generated Run-Time-Environment Component Configuration File 4 | * *** Do not modify ! *** 5 | * 6 | * Project: 'uart-test' 7 | * Target: 'uart-test' 8 | */ 9 | 10 | #ifndef RTE_COMPONENTS_H 11 | #define RTE_COMPONENTS_H 12 | 13 | 14 | /* 15 | * Define the Device Header File: 16 | */ 17 | #define CMSIS_device_header "stm32g4xx.h" 18 | 19 | 20 | #endif /* RTE_COMPONENTS_H */ 21 | -------------------------------------------------------------------------------- /MDK-ARM/uart-test/ExtDll.iex: -------------------------------------------------------------------------------- 1 | [EXTDLL] 2 | Count=0 3 | -------------------------------------------------------------------------------- /MDK-ARM/uart-test/adc.d: -------------------------------------------------------------------------------- 1 | uart-test/adc.o: usr\adc.c usr\adc.h usr\per_conf.h \ 2 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdio.h \ 3 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\string.h \ 4 | D:\APP\Keil_v5\ARM\Pack\ARM\CMSIS\5.7.0\CMSIS\DSP\Include\arm_math.h \ 5 | ..\Drivers\CMSIS\Include\cmsis_compiler.h \ 6 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdint.h \ 7 | ..\Drivers\CMSIS\Include\cmsis_armclang.h \ 8 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\arm_compat.h \ 9 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\arm_acle.h \ 10 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\math.h \ 11 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\float.h \ 12 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\limits.h \ 13 | usr\malloc\malloc.h usr\sys.h \ 14 | ..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\stm32g4xx.h \ 15 | ..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\stm32g431xx.h \ 16 | ..\Drivers\CMSIS\Include\core_cm4.h \ 17 | ..\Drivers\CMSIS\Include\cmsis_version.h \ 18 | ..\Drivers\CMSIS\Include\cmsis_compiler.h \ 19 | ..\Drivers\CMSIS\Include\mpu_armv7.h \ 20 | ..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\system_stm32g4xx.h \ 21 | usr\sys.h usr\gpio.h usr\usart.h usr\delay.h usr\timer.h usr\dma.h \ 22 | usr\spi.h usr\spi_flash\w25qxx.h usr\per_conf.h \ 23 | usr\fatfs\source\fatfs_app.h usr\fatfs\source\ff.h \ 24 | usr\fatfs\source\ffconf.h usr\fatfs\exfuns\exfuns.h \ 25 | usr\fatfs\source\ff.h usr\fatfs\exfuns\fattester.h usr\dac.h \ 26 | usr\opamp.h usr\lcd\lcd.h usr\lcd\st77xx_lcd_init.h usr\osc.h 27 | -------------------------------------------------------------------------------- /MDK-ARM/uart-test/adc.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G4_OSC/9778f077c6a447817cad48cecee05a23d305e67c/MDK-ARM/uart-test/adc.o -------------------------------------------------------------------------------- /MDK-ARM/uart-test/app_fatfs.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G4_OSC/9778f077c6a447817cad48cecee05a23d305e67c/MDK-ARM/uart-test/app_fatfs.o -------------------------------------------------------------------------------- /MDK-ARM/uart-test/basicmathfunctions.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G4_OSC/9778f077c6a447817cad48cecee05a23d305e67c/MDK-ARM/uart-test/basicmathfunctions.o -------------------------------------------------------------------------------- /MDK-ARM/uart-test/bayesfunctions.d: -------------------------------------------------------------------------------- 1 | uart-test/bayesfunctions.o: \ 2 | d:\APP\Keil_v5\ARM\PACK\ARM\CMSIS\5.7.0\CMSIS\DSP\Source\BayesFunctions\BayesFunctions.c \ 3 | d:\APP\Keil_v5\ARM\PACK\ARM\CMSIS\5.7.0\CMSIS\DSP\Source\BayesFunctions\arm_gaussian_naive_bayes_predict_f32.c \ 4 | D:\APP\Keil_v5\ARM\Pack\ARM\CMSIS\5.7.0\CMSIS\DSP\Include\arm_math.h \ 5 | ..\Drivers\CMSIS\Include\cmsis_compiler.h \ 6 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdint.h \ 7 | ..\Drivers\CMSIS\Include\cmsis_armclang.h \ 8 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\arm_compat.h \ 9 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\arm_acle.h \ 10 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\string.h \ 11 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\math.h \ 12 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\float.h \ 13 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\limits.h 14 | -------------------------------------------------------------------------------- /MDK-ARM/uart-test/bayesfunctions.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G4_OSC/9778f077c6a447817cad48cecee05a23d305e67c/MDK-ARM/uart-test/bayesfunctions.o -------------------------------------------------------------------------------- /MDK-ARM/uart-test/commontables.d: -------------------------------------------------------------------------------- 1 | uart-test/commontables.o: \ 2 | d:\APP\Keil_v5\ARM\PACK\ARM\CMSIS\5.7.0\CMSIS\DSP\Source\CommonTables\CommonTables.c \ 3 | d:\APP\Keil_v5\ARM\PACK\ARM\CMSIS\5.7.0\CMSIS\DSP\Source\CommonTables\arm_common_tables.c \ 4 | D:\APP\Keil_v5\ARM\Pack\ARM\CMSIS\5.7.0\CMSIS\DSP\Include\arm_math.h \ 5 | ..\Drivers\CMSIS\Include\cmsis_compiler.h \ 6 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdint.h \ 7 | ..\Drivers\CMSIS\Include\cmsis_armclang.h \ 8 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\arm_compat.h \ 9 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\arm_acle.h \ 10 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\string.h \ 11 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\math.h \ 12 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\float.h \ 13 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\limits.h \ 14 | D:\APP\Keil_v5\ARM\Pack\ARM\CMSIS\5.7.0\CMSIS\DSP\Include\arm_common_tables.h \ 15 | D:\APP\Keil_v5\ARM\Pack\ARM\CMSIS\5.7.0\CMSIS\DSP\Include\arm_math.h \ 16 | d:\APP\Keil_v5\ARM\PACK\ARM\CMSIS\5.7.0\CMSIS\DSP\Source\CommonTables\arm_const_structs.c \ 17 | D:\APP\Keil_v5\ARM\Pack\ARM\CMSIS\5.7.0\CMSIS\DSP\Include\arm_const_structs.h \ 18 | D:\APP\Keil_v5\ARM\Pack\ARM\CMSIS\5.7.0\CMSIS\DSP\Include\arm_common_tables.h \ 19 | d:\APP\Keil_v5\ARM\PACK\ARM\CMSIS\5.7.0\CMSIS\DSP\Source\CommonTables\arm_mve_tables.c 20 | -------------------------------------------------------------------------------- /MDK-ARM/uart-test/commontables.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G4_OSC/9778f077c6a447817cad48cecee05a23d305e67c/MDK-ARM/uart-test/commontables.o -------------------------------------------------------------------------------- /MDK-ARM/uart-test/complexmathfunctions.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G4_OSC/9778f077c6a447817cad48cecee05a23d305e67c/MDK-ARM/uart-test/complexmathfunctions.o -------------------------------------------------------------------------------- /MDK-ARM/uart-test/controllerfunctions.d: -------------------------------------------------------------------------------- 1 | uart-test/controllerfunctions.o: \ 2 | d:\APP\Keil_v5\ARM\PACK\ARM\CMSIS\5.7.0\CMSIS\DSP\Source\ControllerFunctions\ControllerFunctions.c \ 3 | d:\APP\Keil_v5\ARM\PACK\ARM\CMSIS\5.7.0\CMSIS\DSP\Source\ControllerFunctions\arm_pid_init_f32.c \ 4 | D:\APP\Keil_v5\ARM\Pack\ARM\CMSIS\5.7.0\CMSIS\DSP\Include\arm_math.h \ 5 | ..\Drivers\CMSIS\Include\cmsis_compiler.h \ 6 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdint.h \ 7 | ..\Drivers\CMSIS\Include\cmsis_armclang.h \ 8 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\arm_compat.h \ 9 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\arm_acle.h \ 10 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\string.h \ 11 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\math.h \ 12 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\float.h \ 13 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\limits.h \ 14 | d:\APP\Keil_v5\ARM\PACK\ARM\CMSIS\5.7.0\CMSIS\DSP\Source\ControllerFunctions\arm_pid_init_q15.c \ 15 | d:\APP\Keil_v5\ARM\PACK\ARM\CMSIS\5.7.0\CMSIS\DSP\Source\ControllerFunctions\arm_pid_init_q31.c \ 16 | d:\APP\Keil_v5\ARM\PACK\ARM\CMSIS\5.7.0\CMSIS\DSP\Source\ControllerFunctions\arm_pid_reset_f32.c \ 17 | d:\APP\Keil_v5\ARM\PACK\ARM\CMSIS\5.7.0\CMSIS\DSP\Source\ControllerFunctions\arm_pid_reset_q15.c \ 18 | d:\APP\Keil_v5\ARM\PACK\ARM\CMSIS\5.7.0\CMSIS\DSP\Source\ControllerFunctions\arm_pid_reset_q31.c \ 19 | d:\APP\Keil_v5\ARM\PACK\ARM\CMSIS\5.7.0\CMSIS\DSP\Source\ControllerFunctions\arm_sin_cos_f32.c \ 20 | D:\APP\Keil_v5\ARM\Pack\ARM\CMSIS\5.7.0\CMSIS\DSP\Include\arm_common_tables.h \ 21 | D:\APP\Keil_v5\ARM\Pack\ARM\CMSIS\5.7.0\CMSIS\DSP\Include\arm_math.h \ 22 | d:\APP\Keil_v5\ARM\PACK\ARM\CMSIS\5.7.0\CMSIS\DSP\Source\ControllerFunctions\arm_sin_cos_q31.c 23 | -------------------------------------------------------------------------------- /MDK-ARM/uart-test/controllerfunctions.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G4_OSC/9778f077c6a447817cad48cecee05a23d305e67c/MDK-ARM/uart-test/controllerfunctions.o -------------------------------------------------------------------------------- /MDK-ARM/uart-test/dac.d: -------------------------------------------------------------------------------- 1 | uart-test/dac.o: usr\dac.c usr\dac.h usr\per_conf.h \ 2 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdio.h \ 3 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\string.h \ 4 | D:\APP\Keil_v5\ARM\Pack\ARM\CMSIS\5.7.0\CMSIS\DSP\Include\arm_math.h \ 5 | ..\Drivers\CMSIS\Include\cmsis_compiler.h \ 6 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdint.h \ 7 | ..\Drivers\CMSIS\Include\cmsis_armclang.h \ 8 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\arm_compat.h \ 9 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\arm_acle.h \ 10 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\math.h \ 11 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\float.h \ 12 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\limits.h \ 13 | usr\malloc\malloc.h usr\sys.h \ 14 | ..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\stm32g4xx.h \ 15 | ..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\stm32g431xx.h \ 16 | ..\Drivers\CMSIS\Include\core_cm4.h \ 17 | ..\Drivers\CMSIS\Include\cmsis_version.h \ 18 | ..\Drivers\CMSIS\Include\cmsis_compiler.h \ 19 | ..\Drivers\CMSIS\Include\mpu_armv7.h \ 20 | ..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\system_stm32g4xx.h \ 21 | usr\sys.h usr\gpio.h usr\usart.h usr\delay.h usr\timer.h usr\adc.h \ 22 | usr\dma.h usr\spi.h usr\spi_flash\w25qxx.h usr\per_conf.h \ 23 | usr\fatfs\source\fatfs_app.h usr\fatfs\source\ff.h \ 24 | usr\fatfs\source\ffconf.h usr\fatfs\exfuns\exfuns.h \ 25 | usr\fatfs\source\ff.h usr\fatfs\exfuns\fattester.h usr\opamp.h \ 26 | usr\lcd\lcd.h usr\lcd\st77xx_lcd_init.h usr\osc.h 27 | -------------------------------------------------------------------------------- /MDK-ARM/uart-test/dac.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G4_OSC/9778f077c6a447817cad48cecee05a23d305e67c/MDK-ARM/uart-test/dac.o -------------------------------------------------------------------------------- /MDK-ARM/uart-test/delay.d: -------------------------------------------------------------------------------- 1 | uart-test/delay.o: usr\delay.c usr\delay.h usr\per_conf.h \ 2 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdio.h \ 3 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\string.h \ 4 | D:\APP\Keil_v5\ARM\Pack\ARM\CMSIS\5.7.0\CMSIS\DSP\Include\arm_math.h \ 5 | ..\Drivers\CMSIS\Include\cmsis_compiler.h \ 6 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdint.h \ 7 | ..\Drivers\CMSIS\Include\cmsis_armclang.h \ 8 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\arm_compat.h \ 9 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\arm_acle.h \ 10 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\math.h \ 11 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\float.h \ 12 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\limits.h \ 13 | usr\malloc\malloc.h usr\sys.h \ 14 | ..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\stm32g4xx.h \ 15 | ..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\stm32g431xx.h \ 16 | ..\Drivers\CMSIS\Include\core_cm4.h \ 17 | ..\Drivers\CMSIS\Include\cmsis_version.h \ 18 | ..\Drivers\CMSIS\Include\cmsis_compiler.h \ 19 | ..\Drivers\CMSIS\Include\mpu_armv7.h \ 20 | ..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\system_stm32g4xx.h \ 21 | usr\sys.h usr\gpio.h usr\usart.h usr\timer.h usr\adc.h usr\dma.h \ 22 | usr\spi.h usr\spi_flash\w25qxx.h usr\per_conf.h \ 23 | usr\fatfs\source\fatfs_app.h usr\fatfs\source\ff.h \ 24 | usr\fatfs\source\ffconf.h usr\fatfs\exfuns\exfuns.h \ 25 | usr\fatfs\source\ff.h usr\fatfs\exfuns\fattester.h usr\dac.h \ 26 | usr\opamp.h usr\lcd\lcd.h usr\lcd\st77xx_lcd_init.h usr\osc.h 27 | -------------------------------------------------------------------------------- /MDK-ARM/uart-test/delay.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G4_OSC/9778f077c6a447817cad48cecee05a23d305e67c/MDK-ARM/uart-test/delay.o -------------------------------------------------------------------------------- /MDK-ARM/uart-test/diskio.d: -------------------------------------------------------------------------------- 1 | uart-test/diskio.o: usr\fatfs\source\diskio.c usr\fatfs\source\diskio.h \ 2 | usr\fatfs\source\ff.h usr\fatfs\source\ffconf.h \ 3 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdint.h \ 4 | usr\spi_flash\w25qxx.h usr\per_conf.h \ 5 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdio.h \ 6 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\string.h \ 7 | D:\APP\Keil_v5\ARM\Pack\ARM\CMSIS\5.7.0\CMSIS\DSP\Include\arm_math.h \ 8 | ..\Drivers\CMSIS\Include\cmsis_compiler.h \ 9 | ..\Drivers\CMSIS\Include\cmsis_armclang.h \ 10 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\arm_compat.h \ 11 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\arm_acle.h \ 12 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\math.h \ 13 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\float.h \ 14 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\limits.h \ 15 | usr\malloc\malloc.h usr\sys.h \ 16 | ..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\stm32g4xx.h \ 17 | ..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\stm32g431xx.h \ 18 | ..\Drivers\CMSIS\Include\core_cm4.h \ 19 | ..\Drivers\CMSIS\Include\cmsis_version.h \ 20 | ..\Drivers\CMSIS\Include\cmsis_compiler.h \ 21 | ..\Drivers\CMSIS\Include\mpu_armv7.h \ 22 | ..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\system_stm32g4xx.h \ 23 | usr\sys.h usr\gpio.h usr\per_conf.h usr\usart.h usr\delay.h \ 24 | usr\timer.h usr\adc.h usr\dma.h usr\spi.h usr\fatfs\source\fatfs_app.h \ 25 | usr\fatfs\exfuns\exfuns.h usr\fatfs\source\ff.h \ 26 | usr\fatfs\exfuns\fattester.h usr\dac.h usr\opamp.h usr\lcd\lcd.h \ 27 | usr\lcd\st77xx_lcd_init.h usr\osc.h 28 | -------------------------------------------------------------------------------- /MDK-ARM/uart-test/diskio.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G4_OSC/9778f077c6a447817cad48cecee05a23d305e67c/MDK-ARM/uart-test/diskio.o -------------------------------------------------------------------------------- /MDK-ARM/uart-test/distancefunctions.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G4_OSC/9778f077c6a447817cad48cecee05a23d305e67c/MDK-ARM/uart-test/distancefunctions.o -------------------------------------------------------------------------------- /MDK-ARM/uart-test/dma.d: -------------------------------------------------------------------------------- 1 | uart-test/dma.o: usr\dma.c usr\dma.h usr\per_conf.h \ 2 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdio.h \ 3 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\string.h \ 4 | D:\APP\Keil_v5\ARM\Pack\ARM\CMSIS\5.7.0\CMSIS\DSP\Include\arm_math.h \ 5 | ..\Drivers\CMSIS\Include\cmsis_compiler.h \ 6 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdint.h \ 7 | ..\Drivers\CMSIS\Include\cmsis_armclang.h \ 8 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\arm_compat.h \ 9 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\arm_acle.h \ 10 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\math.h \ 11 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\float.h \ 12 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\limits.h \ 13 | usr\malloc\malloc.h usr\sys.h \ 14 | ..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\stm32g4xx.h \ 15 | ..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\stm32g431xx.h \ 16 | ..\Drivers\CMSIS\Include\core_cm4.h \ 17 | ..\Drivers\CMSIS\Include\cmsis_version.h \ 18 | ..\Drivers\CMSIS\Include\cmsis_compiler.h \ 19 | ..\Drivers\CMSIS\Include\mpu_armv7.h \ 20 | ..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\system_stm32g4xx.h \ 21 | usr\sys.h usr\gpio.h usr\usart.h usr\delay.h usr\timer.h usr\adc.h \ 22 | usr\spi.h usr\spi_flash\w25qxx.h usr\per_conf.h \ 23 | usr\fatfs\source\fatfs_app.h usr\fatfs\source\ff.h \ 24 | usr\fatfs\source\ffconf.h usr\fatfs\exfuns\exfuns.h \ 25 | usr\fatfs\source\ff.h usr\fatfs\exfuns\fattester.h usr\dac.h \ 26 | usr\opamp.h usr\lcd\lcd.h usr\lcd\st77xx_lcd_init.h usr\osc.h 27 | -------------------------------------------------------------------------------- /MDK-ARM/uart-test/dma.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G4_OSC/9778f077c6a447817cad48cecee05a23d305e67c/MDK-ARM/uart-test/dma.o -------------------------------------------------------------------------------- /MDK-ARM/uart-test/exfuns.d: -------------------------------------------------------------------------------- 1 | uart-test/exfuns.o: usr\fatfs\exfuns\exfuns.c \ 2 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\string.h \ 3 | usr\fatfs\exfuns\exfuns.h usr\sys.h \ 4 | ..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\stm32g4xx.h \ 5 | ..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\stm32g431xx.h \ 6 | ..\Drivers\CMSIS\Include\core_cm4.h \ 7 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdint.h \ 8 | ..\Drivers\CMSIS\Include\cmsis_version.h \ 9 | ..\Drivers\CMSIS\Include\cmsis_compiler.h \ 10 | ..\Drivers\CMSIS\Include\cmsis_armclang.h \ 11 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\arm_compat.h \ 12 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\arm_acle.h \ 13 | ..\Drivers\CMSIS\Include\mpu_armv7.h \ 14 | ..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\system_stm32g4xx.h \ 15 | usr\fatfs\source\ff.h usr\fatfs\source\ffconf.h \ 16 | usr\fatfs\exfuns\fattester.h usr\malloc\malloc.h usr\usart.h 17 | -------------------------------------------------------------------------------- /MDK-ARM/uart-test/exfuns.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G4_OSC/9778f077c6a447817cad48cecee05a23d305e67c/MDK-ARM/uart-test/exfuns.o -------------------------------------------------------------------------------- /MDK-ARM/uart-test/fastmathfunctions.d: -------------------------------------------------------------------------------- 1 | uart-test/fastmathfunctions.o: \ 2 | d:\APP\Keil_v5\ARM\PACK\ARM\CMSIS\5.7.0\CMSIS\DSP\Source\FastMathFunctions\FastMathFunctions.c \ 3 | d:\APP\Keil_v5\ARM\PACK\ARM\CMSIS\5.7.0\CMSIS\DSP\Source\FastMathFunctions\arm_cos_f32.c \ 4 | D:\APP\Keil_v5\ARM\Pack\ARM\CMSIS\5.7.0\CMSIS\DSP\Include\arm_math.h \ 5 | ..\Drivers\CMSIS\Include\cmsis_compiler.h \ 6 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdint.h \ 7 | ..\Drivers\CMSIS\Include\cmsis_armclang.h \ 8 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\arm_compat.h \ 9 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\arm_acle.h \ 10 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\string.h \ 11 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\math.h \ 12 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\float.h \ 13 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\limits.h \ 14 | D:\APP\Keil_v5\ARM\Pack\ARM\CMSIS\5.7.0\CMSIS\DSP\Include\arm_common_tables.h \ 15 | D:\APP\Keil_v5\ARM\Pack\ARM\CMSIS\5.7.0\CMSIS\DSP\Include\arm_math.h \ 16 | d:\APP\Keil_v5\ARM\PACK\ARM\CMSIS\5.7.0\CMSIS\DSP\Source\FastMathFunctions\arm_cos_q15.c \ 17 | d:\APP\Keil_v5\ARM\PACK\ARM\CMSIS\5.7.0\CMSIS\DSP\Source\FastMathFunctions\arm_cos_q31.c \ 18 | d:\APP\Keil_v5\ARM\PACK\ARM\CMSIS\5.7.0\CMSIS\DSP\Source\FastMathFunctions\arm_sin_f32.c \ 19 | d:\APP\Keil_v5\ARM\PACK\ARM\CMSIS\5.7.0\CMSIS\DSP\Source\FastMathFunctions\arm_sin_q15.c \ 20 | d:\APP\Keil_v5\ARM\PACK\ARM\CMSIS\5.7.0\CMSIS\DSP\Source\FastMathFunctions\arm_sin_q31.c \ 21 | d:\APP\Keil_v5\ARM\PACK\ARM\CMSIS\5.7.0\CMSIS\DSP\Source\FastMathFunctions\arm_sqrt_q15.c \ 22 | d:\APP\Keil_v5\ARM\PACK\ARM\CMSIS\5.7.0\CMSIS\DSP\Source\FastMathFunctions\arm_sqrt_q31.c \ 23 | d:\APP\Keil_v5\ARM\PACK\ARM\CMSIS\5.7.0\CMSIS\DSP\Source\FastMathFunctions\arm_vexp_f32.c \ 24 | d:\APP\Keil_v5\ARM\PACK\ARM\CMSIS\5.7.0\CMSIS\DSP\Source\FastMathFunctions\arm_vlog_f32.c 25 | -------------------------------------------------------------------------------- /MDK-ARM/uart-test/fastmathfunctions.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G4_OSC/9778f077c6a447817cad48cecee05a23d305e67c/MDK-ARM/uart-test/fastmathfunctions.o -------------------------------------------------------------------------------- /MDK-ARM/uart-test/fatfs_app.d: -------------------------------------------------------------------------------- 1 | uart-test/fatfs_app.o: usr\fatfs\source\fatfs_app.c \ 2 | usr\fatfs\source\fatfs_app.h usr\per_conf.h \ 3 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdio.h \ 4 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\string.h \ 5 | D:\APP\Keil_v5\ARM\Pack\ARM\CMSIS\5.7.0\CMSIS\DSP\Include\arm_math.h \ 6 | ..\Drivers\CMSIS\Include\cmsis_compiler.h \ 7 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdint.h \ 8 | ..\Drivers\CMSIS\Include\cmsis_armclang.h \ 9 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\arm_compat.h \ 10 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\arm_acle.h \ 11 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\math.h \ 12 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\float.h \ 13 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\limits.h \ 14 | usr\malloc\malloc.h usr\sys.h \ 15 | ..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\stm32g4xx.h \ 16 | ..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\stm32g431xx.h \ 17 | ..\Drivers\CMSIS\Include\core_cm4.h \ 18 | ..\Drivers\CMSIS\Include\cmsis_version.h \ 19 | ..\Drivers\CMSIS\Include\cmsis_compiler.h \ 20 | ..\Drivers\CMSIS\Include\mpu_armv7.h \ 21 | ..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\system_stm32g4xx.h \ 22 | usr\sys.h usr\gpio.h usr\per_conf.h usr\usart.h usr\delay.h \ 23 | usr\timer.h usr\adc.h usr\dma.h usr\spi.h usr\spi_flash\w25qxx.h \ 24 | usr\fatfs\source\fatfs_app.h usr\dac.h usr\opamp.h usr\lcd\lcd.h \ 25 | usr\lcd\st77xx_lcd_init.h usr\osc.h usr\fatfs\source\ff.h \ 26 | usr\fatfs\source\ffconf.h usr\fatfs\exfuns\exfuns.h \ 27 | usr\fatfs\source\ff.h usr\fatfs\exfuns\fattester.h \ 28 | usr\fatfs\source\bmp.h 29 | -------------------------------------------------------------------------------- /MDK-ARM/uart-test/fattester.d: -------------------------------------------------------------------------------- 1 | uart-test/fattester.o: usr\fatfs\exfuns\fattester.c \ 2 | usr\fatfs\exfuns\fattester.h usr\sys.h \ 3 | ..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\stm32g4xx.h \ 4 | ..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\stm32g431xx.h \ 5 | ..\Drivers\CMSIS\Include\core_cm4.h \ 6 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdint.h \ 7 | ..\Drivers\CMSIS\Include\cmsis_version.h \ 8 | ..\Drivers\CMSIS\Include\cmsis_compiler.h \ 9 | ..\Drivers\CMSIS\Include\cmsis_armclang.h \ 10 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\arm_compat.h \ 11 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\arm_acle.h \ 12 | ..\Drivers\CMSIS\Include\mpu_armv7.h \ 13 | ..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\system_stm32g4xx.h \ 14 | usr\fatfs\source\ff.h usr\fatfs\source\ffconf.h usr\usart.h \ 15 | usr\fatfs\exfuns\exfuns.h usr\malloc\malloc.h \ 16 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\string.h 17 | -------------------------------------------------------------------------------- /MDK-ARM/uart-test/fattester.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G4_OSC/9778f077c6a447817cad48cecee05a23d305e67c/MDK-ARM/uart-test/fattester.o -------------------------------------------------------------------------------- /MDK-ARM/uart-test/ff.d: -------------------------------------------------------------------------------- 1 | uart-test/ff.o: usr\fatfs\source\ff.c usr\fatfs\source\ff.h \ 2 | usr\fatfs\source\ffconf.h \ 3 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdint.h \ 4 | usr\fatfs\source\diskio.h \ 5 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdio.h \ 6 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdarg.h 7 | -------------------------------------------------------------------------------- /MDK-ARM/uart-test/ff.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G4_OSC/9778f077c6a447817cad48cecee05a23d305e67c/MDK-ARM/uart-test/ff.o -------------------------------------------------------------------------------- /MDK-ARM/uart-test/ff_gen_drv.d: -------------------------------------------------------------------------------- 1 | uart-test/ff_gen_drv.o: usr\fatfs\src\ff_gen_drv.c \ 2 | usr\fatfs\src\ff_gen_drv.h usr\fatfs\src\diskio.h \ 3 | usr\fatfs\src\integer.h usr\fatfs\src\ff.h usr\fatfs\Target\ffconf.h \ 4 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdlib.h \ 5 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdint.h 6 | -------------------------------------------------------------------------------- /MDK-ARM/uart-test/ff_gen_drv.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G4_OSC/9778f077c6a447817cad48cecee05a23d305e67c/MDK-ARM/uart-test/ff_gen_drv.o -------------------------------------------------------------------------------- /MDK-ARM/uart-test/ffsystem.d: -------------------------------------------------------------------------------- 1 | uart-test/ffsystem.o: usr\fatfs\source\ffsystem.c usr\fatfs\source\ff.h \ 2 | usr\fatfs\source\ffconf.h \ 3 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdint.h usr\sys.h \ 4 | ..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\stm32g4xx.h \ 5 | ..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\stm32g431xx.h \ 6 | ..\Drivers\CMSIS\Include\core_cm4.h \ 7 | ..\Drivers\CMSIS\Include\cmsis_version.h \ 8 | ..\Drivers\CMSIS\Include\cmsis_compiler.h \ 9 | ..\Drivers\CMSIS\Include\cmsis_armclang.h \ 10 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\arm_compat.h \ 11 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\arm_acle.h \ 12 | ..\Drivers\CMSIS\Include\mpu_armv7.h \ 13 | ..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\system_stm32g4xx.h \ 14 | usr\malloc\malloc.h 15 | -------------------------------------------------------------------------------- /MDK-ARM/uart-test/ffsystem.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G4_OSC/9778f077c6a447817cad48cecee05a23d305e67c/MDK-ARM/uart-test/ffsystem.o -------------------------------------------------------------------------------- /MDK-ARM/uart-test/ffunicode.d: -------------------------------------------------------------------------------- 1 | uart-test/ffunicode.o: usr\fatfs\source\ffunicode.c usr\fatfs\source\ff.h \ 2 | usr\fatfs\source\ffconf.h \ 3 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdint.h 4 | -------------------------------------------------------------------------------- /MDK-ARM/uart-test/ffunicode.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G4_OSC/9778f077c6a447817cad48cecee05a23d305e67c/MDK-ARM/uart-test/ffunicode.o -------------------------------------------------------------------------------- /MDK-ARM/uart-test/filteringfunctions.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G4_OSC/9778f077c6a447817cad48cecee05a23d305e67c/MDK-ARM/uart-test/filteringfunctions.o -------------------------------------------------------------------------------- /MDK-ARM/uart-test/gpio.d: -------------------------------------------------------------------------------- 1 | uart-test/gpio.o: usr\gpio.c usr\per_conf.h \ 2 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdio.h \ 3 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\string.h \ 4 | D:\APP\Keil_v5\ARM\Pack\ARM\CMSIS\5.7.0\CMSIS\DSP\Include\arm_math.h \ 5 | ..\Drivers\CMSIS\Include\cmsis_compiler.h \ 6 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdint.h \ 7 | ..\Drivers\CMSIS\Include\cmsis_armclang.h \ 8 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\arm_compat.h \ 9 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\arm_acle.h \ 10 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\math.h \ 11 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\float.h \ 12 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\limits.h \ 13 | usr\malloc\malloc.h usr\sys.h \ 14 | ..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\stm32g4xx.h \ 15 | ..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\stm32g431xx.h \ 16 | ..\Drivers\CMSIS\Include\core_cm4.h \ 17 | ..\Drivers\CMSIS\Include\cmsis_version.h \ 18 | ..\Drivers\CMSIS\Include\cmsis_compiler.h \ 19 | ..\Drivers\CMSIS\Include\mpu_armv7.h \ 20 | ..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\system_stm32g4xx.h \ 21 | usr\sys.h usr\gpio.h usr\usart.h usr\delay.h usr\timer.h usr\adc.h \ 22 | usr\dma.h usr\spi.h usr\spi_flash\w25qxx.h usr\per_conf.h \ 23 | usr\fatfs\source\fatfs_app.h usr\fatfs\source\ff.h \ 24 | usr\fatfs\source\ffconf.h usr\fatfs\exfuns\exfuns.h \ 25 | usr\fatfs\source\ff.h usr\fatfs\exfuns\fattester.h usr\dac.h \ 26 | usr\opamp.h usr\lcd\lcd.h usr\lcd\st77xx_lcd_init.h usr\osc.h 27 | -------------------------------------------------------------------------------- /MDK-ARM/uart-test/gpio.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G4_OSC/9778f077c6a447817cad48cecee05a23d305e67c/MDK-ARM/uart-test/gpio.o -------------------------------------------------------------------------------- /MDK-ARM/uart-test/lcd.d: -------------------------------------------------------------------------------- 1 | uart-test/lcd.o: usr\lcd\lcd.c usr\lcd\lcd.h usr\per_conf.h \ 2 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdio.h \ 3 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\string.h \ 4 | D:\APP\Keil_v5\ARM\Pack\ARM\CMSIS\5.7.0\CMSIS\DSP\Include\arm_math.h \ 5 | ..\Drivers\CMSIS\Include\cmsis_compiler.h \ 6 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdint.h \ 7 | ..\Drivers\CMSIS\Include\cmsis_armclang.h \ 8 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\arm_compat.h \ 9 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\arm_acle.h \ 10 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\math.h \ 11 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\float.h \ 12 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\limits.h \ 13 | usr\malloc\malloc.h usr\sys.h \ 14 | ..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\stm32g4xx.h \ 15 | ..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\stm32g431xx.h \ 16 | ..\Drivers\CMSIS\Include\core_cm4.h \ 17 | ..\Drivers\CMSIS\Include\cmsis_version.h \ 18 | ..\Drivers\CMSIS\Include\cmsis_compiler.h \ 19 | ..\Drivers\CMSIS\Include\mpu_armv7.h \ 20 | ..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\system_stm32g4xx.h \ 21 | usr\sys.h usr\gpio.h usr\per_conf.h usr\usart.h usr\delay.h \ 22 | usr\timer.h usr\adc.h usr\dma.h usr\spi.h usr\spi_flash\w25qxx.h \ 23 | usr\fatfs\source\fatfs_app.h usr\fatfs\source\ff.h \ 24 | usr\fatfs\source\ffconf.h usr\fatfs\exfuns\exfuns.h \ 25 | usr\fatfs\source\ff.h usr\fatfs\exfuns\fattester.h usr\dac.h \ 26 | usr\opamp.h usr\lcd\lcd.h usr\lcd\st77xx_lcd_init.h usr\osc.h \ 27 | usr\lcd\font.h 28 | -------------------------------------------------------------------------------- /MDK-ARM/uart-test/lcd.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G4_OSC/9778f077c6a447817cad48cecee05a23d305e67c/MDK-ARM/uart-test/lcd.o -------------------------------------------------------------------------------- /MDK-ARM/uart-test/led.d: -------------------------------------------------------------------------------- 1 | uart-test/led.o: usr\led.c usr\per_conf.h \ 2 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdio.h \ 3 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\string.h usr\sys.h \ 4 | ..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\stm32g4xx.h \ 5 | ..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\stm32g431xx.h \ 6 | ..\Drivers\CMSIS\Include\core_cm4.h \ 7 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdint.h \ 8 | ..\Drivers\CMSIS\Include\cmsis_version.h \ 9 | ..\Drivers\CMSIS\Include\cmsis_compiler.h \ 10 | ..\Drivers\CMSIS\Include\cmsis_armclang.h \ 11 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\arm_compat.h \ 12 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\arm_acle.h \ 13 | ..\Drivers\CMSIS\Include\mpu_armv7.h \ 14 | ..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\system_stm32g4xx.h \ 15 | usr\led.h usr\usart.h usr\delay.h usr\sys.h usr\timer.h usr\adc.h \ 16 | usr\dma.h usr\spi.h usr\lcd\lcd.h usr\per_conf.h \ 17 | usr\lcd\st77xx_lcd_init.h usr\osc.h 18 | -------------------------------------------------------------------------------- /MDK-ARM/uart-test/led.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G4_OSC/9778f077c6a447817cad48cecee05a23d305e67c/MDK-ARM/uart-test/led.o -------------------------------------------------------------------------------- /MDK-ARM/uart-test/main.d: -------------------------------------------------------------------------------- 1 | uart-test/main.o: Core\Src\main.c Core\Inc\main.h usr\per_conf.h \ 2 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdio.h \ 3 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\string.h \ 4 | D:\APP\Keil_v5\ARM\Pack\ARM\CMSIS\5.7.0\CMSIS\DSP\Include\arm_math.h \ 5 | ..\Drivers\CMSIS\Include\cmsis_compiler.h \ 6 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdint.h \ 7 | ..\Drivers\CMSIS\Include\cmsis_armclang.h \ 8 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\arm_compat.h \ 9 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\arm_acle.h \ 10 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\math.h \ 11 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\float.h \ 12 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\limits.h \ 13 | usr\malloc\malloc.h usr\sys.h \ 14 | ..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\stm32g4xx.h \ 15 | ..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\stm32g431xx.h \ 16 | ..\Drivers\CMSIS\Include\core_cm4.h \ 17 | ..\Drivers\CMSIS\Include\cmsis_version.h \ 18 | ..\Drivers\CMSIS\Include\cmsis_compiler.h \ 19 | ..\Drivers\CMSIS\Include\mpu_armv7.h \ 20 | ..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\system_stm32g4xx.h \ 21 | usr\sys.h usr\gpio.h usr\per_conf.h usr\usart.h usr\delay.h \ 22 | usr\timer.h usr\adc.h usr\dma.h usr\spi.h usr\spi_flash\w25qxx.h \ 23 | usr\fatfs\source\fatfs_app.h usr\fatfs\source\ff.h \ 24 | usr\fatfs\source\ffconf.h usr\fatfs\exfuns\exfuns.h \ 25 | usr\fatfs\source\ff.h usr\fatfs\exfuns\fattester.h usr\dac.h \ 26 | usr\opamp.h usr\lcd\lcd.h usr\lcd\st77xx_lcd_init.h usr\osc.h \ 27 | usr\lcd\pic1.h 28 | -------------------------------------------------------------------------------- /MDK-ARM/uart-test/main.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G4_OSC/9778f077c6a447817cad48cecee05a23d305e67c/MDK-ARM/uart-test/main.o -------------------------------------------------------------------------------- /MDK-ARM/uart-test/malloc.d: -------------------------------------------------------------------------------- 1 | uart-test/malloc.o: usr\malloc\malloc.c usr\malloc\malloc.h usr\sys.h \ 2 | ..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\stm32g4xx.h \ 3 | ..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\stm32g431xx.h \ 4 | ..\Drivers\CMSIS\Include\core_cm4.h \ 5 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdint.h \ 6 | ..\Drivers\CMSIS\Include\cmsis_version.h \ 7 | ..\Drivers\CMSIS\Include\cmsis_compiler.h \ 8 | ..\Drivers\CMSIS\Include\cmsis_armclang.h \ 9 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\arm_compat.h \ 10 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\arm_acle.h \ 11 | ..\Drivers\CMSIS\Include\mpu_armv7.h \ 12 | ..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\system_stm32g4xx.h 13 | -------------------------------------------------------------------------------- /MDK-ARM/uart-test/malloc.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G4_OSC/9778f077c6a447817cad48cecee05a23d305e67c/MDK-ARM/uart-test/malloc.o -------------------------------------------------------------------------------- /MDK-ARM/uart-test/matrixfunctions.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G4_OSC/9778f077c6a447817cad48cecee05a23d305e67c/MDK-ARM/uart-test/matrixfunctions.o -------------------------------------------------------------------------------- /MDK-ARM/uart-test/opamp.d: -------------------------------------------------------------------------------- 1 | uart-test/opamp.o: usr\opamp.c usr\per_conf.h \ 2 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdio.h \ 3 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\string.h \ 4 | D:\APP\Keil_v5\ARM\Pack\ARM\CMSIS\5.7.0\CMSIS\DSP\Include\arm_math.h \ 5 | ..\Drivers\CMSIS\Include\cmsis_compiler.h \ 6 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdint.h \ 7 | ..\Drivers\CMSIS\Include\cmsis_armclang.h \ 8 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\arm_compat.h \ 9 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\arm_acle.h \ 10 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\math.h \ 11 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\float.h \ 12 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\limits.h \ 13 | usr\malloc\malloc.h usr\sys.h \ 14 | ..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\stm32g4xx.h \ 15 | ..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\stm32g431xx.h \ 16 | ..\Drivers\CMSIS\Include\core_cm4.h \ 17 | ..\Drivers\CMSIS\Include\cmsis_version.h \ 18 | ..\Drivers\CMSIS\Include\cmsis_compiler.h \ 19 | ..\Drivers\CMSIS\Include\mpu_armv7.h \ 20 | ..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\system_stm32g4xx.h \ 21 | usr\sys.h usr\gpio.h usr\usart.h usr\delay.h usr\timer.h usr\adc.h \ 22 | usr\dma.h usr\spi.h usr\spi_flash\w25qxx.h usr\per_conf.h \ 23 | usr\fatfs\source\fatfs_app.h usr\fatfs\source\ff.h \ 24 | usr\fatfs\source\ffconf.h usr\fatfs\exfuns\exfuns.h \ 25 | usr\fatfs\source\ff.h usr\fatfs\exfuns\fattester.h usr\dac.h \ 26 | usr\opamp.h usr\lcd\lcd.h usr\lcd\st77xx_lcd_init.h usr\osc.h 27 | -------------------------------------------------------------------------------- /MDK-ARM/uart-test/opamp.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G4_OSC/9778f077c6a447817cad48cecee05a23d305e67c/MDK-ARM/uart-test/opamp.o -------------------------------------------------------------------------------- /MDK-ARM/uart-test/osc.d: -------------------------------------------------------------------------------- 1 | uart-test/osc.o: usr\osc.c usr\osc.h usr\per_conf.h \ 2 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdio.h \ 3 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\string.h \ 4 | D:\APP\Keil_v5\ARM\Pack\ARM\CMSIS\5.7.0\CMSIS\DSP\Include\arm_math.h \ 5 | ..\Drivers\CMSIS\Include\cmsis_compiler.h \ 6 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdint.h \ 7 | ..\Drivers\CMSIS\Include\cmsis_armclang.h \ 8 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\arm_compat.h \ 9 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\arm_acle.h \ 10 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\math.h \ 11 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\float.h \ 12 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\limits.h \ 13 | usr\malloc\malloc.h usr\sys.h \ 14 | ..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\stm32g4xx.h \ 15 | ..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\stm32g431xx.h \ 16 | ..\Drivers\CMSIS\Include\core_cm4.h \ 17 | ..\Drivers\CMSIS\Include\cmsis_version.h \ 18 | ..\Drivers\CMSIS\Include\cmsis_compiler.h \ 19 | ..\Drivers\CMSIS\Include\mpu_armv7.h \ 20 | ..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\system_stm32g4xx.h \ 21 | usr\sys.h usr\gpio.h usr\usart.h usr\delay.h usr\timer.h usr\adc.h \ 22 | usr\dma.h usr\spi.h usr\spi_flash\w25qxx.h usr\per_conf.h \ 23 | usr\fatfs\source\fatfs_app.h usr\fatfs\source\ff.h \ 24 | usr\fatfs\source\ffconf.h usr\fatfs\exfuns\exfuns.h \ 25 | usr\fatfs\source\ff.h usr\fatfs\exfuns\fattester.h usr\dac.h \ 26 | usr\opamp.h usr\lcd\lcd.h usr\lcd\st77xx_lcd_init.h 27 | -------------------------------------------------------------------------------- /MDK-ARM/uart-test/osc.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G4_OSC/9778f077c6a447817cad48cecee05a23d305e67c/MDK-ARM/uart-test/osc.o -------------------------------------------------------------------------------- /MDK-ARM/uart-test/sd_diskio.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G4_OSC/9778f077c6a447817cad48cecee05a23d305e67c/MDK-ARM/uart-test/sd_diskio.o -------------------------------------------------------------------------------- /MDK-ARM/uart-test/sdmmc.d: -------------------------------------------------------------------------------- 1 | uart-test/sdmmc.o: usr\sdmmc\sdmmc.c usr\sdmmc\sdmmc.h usr\per_conf.h \ 2 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdio.h \ 3 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\string.h \ 4 | D:\APP\Keil_v5\ARM\Pack\ARM\CMSIS\5.7.0\CMSIS\DSP\Include\arm_math.h \ 5 | ..\Drivers\CMSIS\Include\cmsis_compiler.h \ 6 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdint.h \ 7 | ..\Drivers\CMSIS\Include\cmsis_armclang.h \ 8 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\arm_compat.h \ 9 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\arm_acle.h \ 10 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\math.h \ 11 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\float.h \ 12 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\limits.h \ 13 | usr\malloc\malloc.h usr\sys.h \ 14 | ..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\stm32g4xx.h \ 15 | ..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\stm32g431xx.h \ 16 | ..\Drivers\CMSIS\Include\core_cm4.h \ 17 | ..\Drivers\CMSIS\Include\cmsis_version.h \ 18 | ..\Drivers\CMSIS\Include\cmsis_compiler.h \ 19 | ..\Drivers\CMSIS\Include\mpu_armv7.h \ 20 | ..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\system_stm32g4xx.h \ 21 | usr\sys.h usr\gpio.h usr\per_conf.h usr\usart.h usr\delay.h \ 22 | usr\timer.h usr\adc.h usr\dma.h usr\spi.h usr\spi_flash\w25qxx.h \ 23 | usr\fatfs\source\fatfs_app.h usr\fatfs\source\ff.h \ 24 | usr\fatfs\source\ffconf.h usr\fatfs\exfuns\exfuns.h \ 25 | usr\fatfs\source\ff.h usr\fatfs\exfuns\fattester.h usr\dac.h \ 26 | usr\opamp.h usr\lcd\lcd.h usr\lcd\st77xx_lcd_init.h usr\osc.h \ 27 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdlib.h 28 | -------------------------------------------------------------------------------- /MDK-ARM/uart-test/sdmmc.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G4_OSC/9778f077c6a447817cad48cecee05a23d305e67c/MDK-ARM/uart-test/sdmmc.o -------------------------------------------------------------------------------- /MDK-ARM/uart-test/spi.d: -------------------------------------------------------------------------------- 1 | uart-test/spi.o: usr\spi.c usr\spi.h usr\per_conf.h \ 2 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdio.h \ 3 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\string.h \ 4 | D:\APP\Keil_v5\ARM\Pack\ARM\CMSIS\5.7.0\CMSIS\DSP\Include\arm_math.h \ 5 | ..\Drivers\CMSIS\Include\cmsis_compiler.h \ 6 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdint.h \ 7 | ..\Drivers\CMSIS\Include\cmsis_armclang.h \ 8 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\arm_compat.h \ 9 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\arm_acle.h \ 10 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\math.h \ 11 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\float.h \ 12 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\limits.h \ 13 | usr\malloc\malloc.h usr\sys.h \ 14 | ..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\stm32g4xx.h \ 15 | ..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\stm32g431xx.h \ 16 | ..\Drivers\CMSIS\Include\core_cm4.h \ 17 | ..\Drivers\CMSIS\Include\cmsis_version.h \ 18 | ..\Drivers\CMSIS\Include\cmsis_compiler.h \ 19 | ..\Drivers\CMSIS\Include\mpu_armv7.h \ 20 | ..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\system_stm32g4xx.h \ 21 | usr\sys.h usr\gpio.h usr\usart.h usr\delay.h usr\timer.h usr\adc.h \ 22 | usr\dma.h usr\spi_flash\w25qxx.h usr\per_conf.h \ 23 | usr\fatfs\source\fatfs_app.h usr\fatfs\source\ff.h \ 24 | usr\fatfs\source\ffconf.h usr\fatfs\exfuns\exfuns.h \ 25 | usr\fatfs\source\ff.h usr\fatfs\exfuns\fattester.h usr\dac.h \ 26 | usr\opamp.h usr\lcd\lcd.h usr\lcd\st77xx_lcd_init.h usr\osc.h 27 | -------------------------------------------------------------------------------- /MDK-ARM/uart-test/spi.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G4_OSC/9778f077c6a447817cad48cecee05a23d305e67c/MDK-ARM/uart-test/spi.o -------------------------------------------------------------------------------- /MDK-ARM/uart-test/st7735_lcd_init.d: -------------------------------------------------------------------------------- 1 | uart-test/st7735_lcd_init.o: usr\lcd\st7735_lcd_init.c usr\per_conf.h \ 2 | usr\sys.h ..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\stm32g4xx.h \ 3 | ..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\stm32g431xx.h \ 4 | ..\Drivers\CMSIS\Include\core_cm4.h \ 5 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdint.h \ 6 | ..\Drivers\CMSIS\Include\cmsis_version.h \ 7 | ..\Drivers\CMSIS\Include\cmsis_compiler.h \ 8 | ..\Drivers\CMSIS\Include\cmsis_armclang.h \ 9 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\arm_compat.h \ 10 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\arm_acle.h \ 11 | ..\Drivers\CMSIS\Include\mpu_armv7.h \ 12 | ..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\system_stm32g4xx.h \ 13 | usr\led.h usr\usart.h usr\delay.h usr\sys.h usr\SPI.H usr\per_conf.h \ 14 | usr\lcd\lcd.h usr\lcd\st7735_lcd_init.h 15 | -------------------------------------------------------------------------------- /MDK-ARM/uart-test/st7735_lcd_init.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G4_OSC/9778f077c6a447817cad48cecee05a23d305e67c/MDK-ARM/uart-test/st7735_lcd_init.o -------------------------------------------------------------------------------- /MDK-ARM/uart-test/st77xx_lcd_init.d: -------------------------------------------------------------------------------- 1 | uart-test/st77xx_lcd_init.o: usr\lcd\st77xx_lcd_init.c usr\per_conf.h \ 2 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdio.h \ 3 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\string.h \ 4 | D:\APP\Keil_v5\ARM\Pack\ARM\CMSIS\5.7.0\CMSIS\DSP\Include\arm_math.h \ 5 | ..\Drivers\CMSIS\Include\cmsis_compiler.h \ 6 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdint.h \ 7 | ..\Drivers\CMSIS\Include\cmsis_armclang.h \ 8 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\arm_compat.h \ 9 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\arm_acle.h \ 10 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\math.h \ 11 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\float.h \ 12 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\limits.h \ 13 | usr\malloc\malloc.h usr\sys.h \ 14 | ..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\stm32g4xx.h \ 15 | ..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\stm32g431xx.h \ 16 | ..\Drivers\CMSIS\Include\core_cm4.h \ 17 | ..\Drivers\CMSIS\Include\cmsis_version.h \ 18 | ..\Drivers\CMSIS\Include\cmsis_compiler.h \ 19 | ..\Drivers\CMSIS\Include\mpu_armv7.h \ 20 | ..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\system_stm32g4xx.h \ 21 | usr\sys.h usr\gpio.h usr\per_conf.h usr\usart.h usr\delay.h \ 22 | usr\timer.h usr\adc.h usr\dma.h usr\spi.h usr\spi_flash\w25qxx.h \ 23 | usr\fatfs\source\fatfs_app.h usr\fatfs\source\ff.h \ 24 | usr\fatfs\source\ffconf.h usr\fatfs\exfuns\exfuns.h \ 25 | usr\fatfs\source\ff.h usr\fatfs\exfuns\fattester.h usr\dac.h \ 26 | usr\opamp.h usr\lcd\lcd.h usr\lcd\st77xx_lcd_init.h usr\osc.h 27 | -------------------------------------------------------------------------------- /MDK-ARM/uart-test/st77xx_lcd_init.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G4_OSC/9778f077c6a447817cad48cecee05a23d305e67c/MDK-ARM/uart-test/st77xx_lcd_init.o -------------------------------------------------------------------------------- /MDK-ARM/uart-test/startup_stm32g431xx.d: -------------------------------------------------------------------------------- 1 | uart-test\startup_stm32g431xx.o: startup_stm32g431xx.s 2 | -------------------------------------------------------------------------------- /MDK-ARM/uart-test/startup_stm32g431xx.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G4_OSC/9778f077c6a447817cad48cecee05a23d305e67c/MDK-ARM/uart-test/startup_stm32g431xx.o -------------------------------------------------------------------------------- /MDK-ARM/uart-test/statisticsfunctions.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G4_OSC/9778f077c6a447817cad48cecee05a23d305e67c/MDK-ARM/uart-test/statisticsfunctions.o -------------------------------------------------------------------------------- /MDK-ARM/uart-test/stm32g4xx_hal_cortex.d: -------------------------------------------------------------------------------- 1 | uart-test/stm32g4xx_hal_cortex.o: \ 2 | ..\Drivers\STM32G4xx_HAL_Driver\Src\stm32g4xx_hal_cortex.c \ 3 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal.h \ 4 | ..\Core\Inc\stm32g4xx_hal_conf.h \ 5 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_rcc.h \ 6 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_def.h \ 7 | ..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\stm32g4xx.h \ 8 | ..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\stm32g431xx.h \ 9 | ..\Drivers\CMSIS\Include\core_cm4.h \ 10 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdint.h \ 11 | ..\Drivers\CMSIS\Include\cmsis_version.h \ 12 | ..\Drivers\CMSIS\Include\cmsis_compiler.h \ 13 | ..\Drivers\CMSIS\Include\cmsis_armclang.h \ 14 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\arm_compat.h \ 15 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\arm_acle.h \ 16 | ..\Drivers\CMSIS\Include\mpu_armv7.h \ 17 | ..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\system_stm32g4xx.h \ 18 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\Legacy\stm32_hal_legacy.h \ 19 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\stddef.h \ 20 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_rcc_ex.h \ 21 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_gpio.h \ 22 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_gpio_ex.h \ 23 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_dma.h \ 24 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_dma_ex.h \ 25 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_cortex.h \ 26 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_exti.h \ 27 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_flash.h \ 28 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_flash_ex.h \ 29 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_flash_ramfunc.h \ 30 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr.h \ 31 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr_ex.h \ 32 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_uart.h \ 33 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_uart_ex.h 34 | -------------------------------------------------------------------------------- /MDK-ARM/uart-test/stm32g4xx_hal_cortex.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G4_OSC/9778f077c6a447817cad48cecee05a23d305e67c/MDK-ARM/uart-test/stm32g4xx_hal_cortex.o -------------------------------------------------------------------------------- /MDK-ARM/uart-test/stm32g4xx_hal_dma.d: -------------------------------------------------------------------------------- 1 | uart-test/stm32g4xx_hal_dma.o: \ 2 | ..\Drivers\STM32G4xx_HAL_Driver\Src\stm32g4xx_hal_dma.c \ 3 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal.h \ 4 | ..\Core\Inc\stm32g4xx_hal_conf.h \ 5 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_rcc.h \ 6 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_def.h \ 7 | ..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\stm32g4xx.h \ 8 | ..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\stm32g431xx.h \ 9 | ..\Drivers\CMSIS\Include\core_cm4.h \ 10 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdint.h \ 11 | ..\Drivers\CMSIS\Include\cmsis_version.h \ 12 | ..\Drivers\CMSIS\Include\cmsis_compiler.h \ 13 | ..\Drivers\CMSIS\Include\cmsis_armclang.h \ 14 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\arm_compat.h \ 15 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\arm_acle.h \ 16 | ..\Drivers\CMSIS\Include\mpu_armv7.h \ 17 | ..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\system_stm32g4xx.h \ 18 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\Legacy\stm32_hal_legacy.h \ 19 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\stddef.h \ 20 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_rcc_ex.h \ 21 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_gpio.h \ 22 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_gpio_ex.h \ 23 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_dma.h \ 24 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_dma_ex.h \ 25 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_cortex.h \ 26 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_exti.h \ 27 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_flash.h \ 28 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_flash_ex.h \ 29 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_flash_ramfunc.h \ 30 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr.h \ 31 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr_ex.h \ 32 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_uart.h \ 33 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_uart_ex.h 34 | -------------------------------------------------------------------------------- /MDK-ARM/uart-test/stm32g4xx_hal_dma.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G4_OSC/9778f077c6a447817cad48cecee05a23d305e67c/MDK-ARM/uart-test/stm32g4xx_hal_dma.o -------------------------------------------------------------------------------- /MDK-ARM/uart-test/stm32g4xx_hal_dma_ex.d: -------------------------------------------------------------------------------- 1 | uart-test/stm32g4xx_hal_dma_ex.o: \ 2 | ..\Drivers\STM32G4xx_HAL_Driver\Src\stm32g4xx_hal_dma_ex.c \ 3 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal.h \ 4 | ..\Core\Inc\stm32g4xx_hal_conf.h \ 5 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_rcc.h \ 6 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_def.h \ 7 | ..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\stm32g4xx.h \ 8 | ..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\stm32g431xx.h \ 9 | ..\Drivers\CMSIS\Include\core_cm4.h \ 10 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdint.h \ 11 | ..\Drivers\CMSIS\Include\cmsis_version.h \ 12 | ..\Drivers\CMSIS\Include\cmsis_compiler.h \ 13 | ..\Drivers\CMSIS\Include\cmsis_armclang.h \ 14 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\arm_compat.h \ 15 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\arm_acle.h \ 16 | ..\Drivers\CMSIS\Include\mpu_armv7.h \ 17 | ..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\system_stm32g4xx.h \ 18 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\Legacy\stm32_hal_legacy.h \ 19 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\stddef.h \ 20 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_rcc_ex.h \ 21 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_gpio.h \ 22 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_gpio_ex.h \ 23 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_dma.h \ 24 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_dma_ex.h \ 25 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_cortex.h \ 26 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_exti.h \ 27 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_flash.h \ 28 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_flash_ex.h \ 29 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_flash_ramfunc.h \ 30 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr.h \ 31 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr_ex.h \ 32 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_uart.h \ 33 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_uart_ex.h 34 | -------------------------------------------------------------------------------- /MDK-ARM/uart-test/stm32g4xx_hal_dma_ex.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G4_OSC/9778f077c6a447817cad48cecee05a23d305e67c/MDK-ARM/uart-test/stm32g4xx_hal_dma_ex.o -------------------------------------------------------------------------------- /MDK-ARM/uart-test/stm32g4xx_hal_exti.d: -------------------------------------------------------------------------------- 1 | uart-test/stm32g4xx_hal_exti.o: \ 2 | ..\Drivers\STM32G4xx_HAL_Driver\Src\stm32g4xx_hal_exti.c \ 3 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal.h \ 4 | ..\Core\Inc\stm32g4xx_hal_conf.h \ 5 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_rcc.h \ 6 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_def.h \ 7 | ..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\stm32g4xx.h \ 8 | ..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\stm32g431xx.h \ 9 | ..\Drivers\CMSIS\Include\core_cm4.h \ 10 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdint.h \ 11 | ..\Drivers\CMSIS\Include\cmsis_version.h \ 12 | ..\Drivers\CMSIS\Include\cmsis_compiler.h \ 13 | ..\Drivers\CMSIS\Include\cmsis_armclang.h \ 14 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\arm_compat.h \ 15 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\arm_acle.h \ 16 | ..\Drivers\CMSIS\Include\mpu_armv7.h \ 17 | ..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\system_stm32g4xx.h \ 18 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\Legacy\stm32_hal_legacy.h \ 19 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\stddef.h \ 20 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_rcc_ex.h \ 21 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_gpio.h \ 22 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_gpio_ex.h \ 23 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_dma.h \ 24 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_dma_ex.h \ 25 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_cortex.h \ 26 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_exti.h \ 27 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_flash.h \ 28 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_flash_ex.h \ 29 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_flash_ramfunc.h \ 30 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr.h \ 31 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr_ex.h \ 32 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_uart.h \ 33 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_uart_ex.h 34 | -------------------------------------------------------------------------------- /MDK-ARM/uart-test/stm32g4xx_hal_exti.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G4_OSC/9778f077c6a447817cad48cecee05a23d305e67c/MDK-ARM/uart-test/stm32g4xx_hal_exti.o -------------------------------------------------------------------------------- /MDK-ARM/uart-test/stm32g4xx_hal_flash.d: -------------------------------------------------------------------------------- 1 | uart-test/stm32g4xx_hal_flash.o: \ 2 | ..\Drivers\STM32G4xx_HAL_Driver\Src\stm32g4xx_hal_flash.c \ 3 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal.h \ 4 | ..\Core\Inc\stm32g4xx_hal_conf.h \ 5 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_rcc.h \ 6 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_def.h \ 7 | ..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\stm32g4xx.h \ 8 | ..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\stm32g431xx.h \ 9 | ..\Drivers\CMSIS\Include\core_cm4.h \ 10 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdint.h \ 11 | ..\Drivers\CMSIS\Include\cmsis_version.h \ 12 | ..\Drivers\CMSIS\Include\cmsis_compiler.h \ 13 | ..\Drivers\CMSIS\Include\cmsis_armclang.h \ 14 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\arm_compat.h \ 15 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\arm_acle.h \ 16 | ..\Drivers\CMSIS\Include\mpu_armv7.h \ 17 | ..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\system_stm32g4xx.h \ 18 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\Legacy\stm32_hal_legacy.h \ 19 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\stddef.h \ 20 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_rcc_ex.h \ 21 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_gpio.h \ 22 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_gpio_ex.h \ 23 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_dma.h \ 24 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_dma_ex.h \ 25 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_cortex.h \ 26 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_exti.h \ 27 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_flash.h \ 28 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_flash_ex.h \ 29 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_flash_ramfunc.h \ 30 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr.h \ 31 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr_ex.h \ 32 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_uart.h \ 33 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_uart_ex.h 34 | -------------------------------------------------------------------------------- /MDK-ARM/uart-test/stm32g4xx_hal_flash.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G4_OSC/9778f077c6a447817cad48cecee05a23d305e67c/MDK-ARM/uart-test/stm32g4xx_hal_flash.o -------------------------------------------------------------------------------- /MDK-ARM/uart-test/stm32g4xx_hal_flash_ex.d: -------------------------------------------------------------------------------- 1 | uart-test/stm32g4xx_hal_flash_ex.o: \ 2 | ..\Drivers\STM32G4xx_HAL_Driver\Src\stm32g4xx_hal_flash_ex.c \ 3 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal.h \ 4 | ..\Core\Inc\stm32g4xx_hal_conf.h \ 5 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_rcc.h \ 6 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_def.h \ 7 | ..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\stm32g4xx.h \ 8 | ..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\stm32g431xx.h \ 9 | ..\Drivers\CMSIS\Include\core_cm4.h \ 10 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdint.h \ 11 | ..\Drivers\CMSIS\Include\cmsis_version.h \ 12 | ..\Drivers\CMSIS\Include\cmsis_compiler.h \ 13 | ..\Drivers\CMSIS\Include\cmsis_armclang.h \ 14 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\arm_compat.h \ 15 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\arm_acle.h \ 16 | ..\Drivers\CMSIS\Include\mpu_armv7.h \ 17 | ..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\system_stm32g4xx.h \ 18 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\Legacy\stm32_hal_legacy.h \ 19 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\stddef.h \ 20 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_rcc_ex.h \ 21 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_gpio.h \ 22 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_gpio_ex.h \ 23 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_dma.h \ 24 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_dma_ex.h \ 25 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_cortex.h \ 26 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_exti.h \ 27 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_flash.h \ 28 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_flash_ex.h \ 29 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_flash_ramfunc.h \ 30 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr.h \ 31 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr_ex.h \ 32 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_uart.h \ 33 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_uart_ex.h 34 | -------------------------------------------------------------------------------- /MDK-ARM/uart-test/stm32g4xx_hal_flash_ex.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G4_OSC/9778f077c6a447817cad48cecee05a23d305e67c/MDK-ARM/uart-test/stm32g4xx_hal_flash_ex.o -------------------------------------------------------------------------------- /MDK-ARM/uart-test/stm32g4xx_hal_flash_ramfunc.d: -------------------------------------------------------------------------------- 1 | uart-test/stm32g4xx_hal_flash_ramfunc.o: \ 2 | ..\Drivers\STM32G4xx_HAL_Driver\Src\stm32g4xx_hal_flash_ramfunc.c \ 3 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal.h \ 4 | ..\Core\Inc\stm32g4xx_hal_conf.h \ 5 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_rcc.h \ 6 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_def.h \ 7 | ..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\stm32g4xx.h \ 8 | ..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\stm32g431xx.h \ 9 | ..\Drivers\CMSIS\Include\core_cm4.h \ 10 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdint.h \ 11 | ..\Drivers\CMSIS\Include\cmsis_version.h \ 12 | ..\Drivers\CMSIS\Include\cmsis_compiler.h \ 13 | ..\Drivers\CMSIS\Include\cmsis_armclang.h \ 14 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\arm_compat.h \ 15 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\arm_acle.h \ 16 | ..\Drivers\CMSIS\Include\mpu_armv7.h \ 17 | ..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\system_stm32g4xx.h \ 18 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\Legacy\stm32_hal_legacy.h \ 19 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\stddef.h \ 20 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_rcc_ex.h \ 21 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_gpio.h \ 22 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_gpio_ex.h \ 23 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_dma.h \ 24 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_dma_ex.h \ 25 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_cortex.h \ 26 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_exti.h \ 27 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_flash.h \ 28 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_flash_ex.h \ 29 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_flash_ramfunc.h \ 30 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr.h \ 31 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr_ex.h \ 32 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_uart.h \ 33 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_uart_ex.h 34 | -------------------------------------------------------------------------------- /MDK-ARM/uart-test/stm32g4xx_hal_flash_ramfunc.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G4_OSC/9778f077c6a447817cad48cecee05a23d305e67c/MDK-ARM/uart-test/stm32g4xx_hal_flash_ramfunc.o -------------------------------------------------------------------------------- /MDK-ARM/uart-test/stm32g4xx_hal_gpio.d: -------------------------------------------------------------------------------- 1 | uart-test/stm32g4xx_hal_gpio.o: \ 2 | ..\Drivers\STM32G4xx_HAL_Driver\Src\stm32g4xx_hal_gpio.c \ 3 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal.h \ 4 | ..\Core\Inc\stm32g4xx_hal_conf.h \ 5 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_rcc.h \ 6 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_def.h \ 7 | ..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\stm32g4xx.h \ 8 | ..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\stm32g431xx.h \ 9 | ..\Drivers\CMSIS\Include\core_cm4.h \ 10 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdint.h \ 11 | ..\Drivers\CMSIS\Include\cmsis_version.h \ 12 | ..\Drivers\CMSIS\Include\cmsis_compiler.h \ 13 | ..\Drivers\CMSIS\Include\cmsis_armclang.h \ 14 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\arm_compat.h \ 15 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\arm_acle.h \ 16 | ..\Drivers\CMSIS\Include\mpu_armv7.h \ 17 | ..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\system_stm32g4xx.h \ 18 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\Legacy\stm32_hal_legacy.h \ 19 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\stddef.h \ 20 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_rcc_ex.h \ 21 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_gpio.h \ 22 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_gpio_ex.h \ 23 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_dma.h \ 24 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_dma_ex.h \ 25 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_cortex.h \ 26 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_exti.h \ 27 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_flash.h \ 28 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_flash_ex.h \ 29 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_flash_ramfunc.h \ 30 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr.h \ 31 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr_ex.h \ 32 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_uart.h \ 33 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_uart_ex.h 34 | -------------------------------------------------------------------------------- /MDK-ARM/uart-test/stm32g4xx_hal_gpio.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G4_OSC/9778f077c6a447817cad48cecee05a23d305e67c/MDK-ARM/uart-test/stm32g4xx_hal_gpio.o -------------------------------------------------------------------------------- /MDK-ARM/uart-test/stm32g4xx_hal_msp.d: -------------------------------------------------------------------------------- 1 | uart-test/stm32g4xx_hal_msp.o: ..\Core\Src\stm32g4xx_hal_msp.c \ 2 | ..\Core\Inc\main.h ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal.h \ 3 | ..\Core\Inc\stm32g4xx_hal_conf.h \ 4 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_rcc.h \ 5 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_def.h \ 6 | ..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\stm32g4xx.h \ 7 | ..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\stm32g431xx.h \ 8 | ..\Drivers\CMSIS\Include\core_cm4.h \ 9 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdint.h \ 10 | ..\Drivers\CMSIS\Include\cmsis_version.h \ 11 | ..\Drivers\CMSIS\Include\cmsis_compiler.h \ 12 | ..\Drivers\CMSIS\Include\cmsis_armclang.h \ 13 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\arm_compat.h \ 14 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\arm_acle.h \ 15 | ..\Drivers\CMSIS\Include\mpu_armv7.h \ 16 | ..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\system_stm32g4xx.h \ 17 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\Legacy\stm32_hal_legacy.h \ 18 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\stddef.h \ 19 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_rcc_ex.h \ 20 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_gpio.h \ 21 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_gpio_ex.h \ 22 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_dma.h \ 23 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_dma_ex.h \ 24 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_cortex.h \ 25 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_exti.h \ 26 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_flash.h \ 27 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_flash_ex.h \ 28 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_flash_ramfunc.h \ 29 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr.h \ 30 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr_ex.h \ 31 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_uart.h \ 32 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_uart_ex.h 33 | -------------------------------------------------------------------------------- /MDK-ARM/uart-test/stm32g4xx_hal_msp.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G4_OSC/9778f077c6a447817cad48cecee05a23d305e67c/MDK-ARM/uart-test/stm32g4xx_hal_msp.o -------------------------------------------------------------------------------- /MDK-ARM/uart-test/stm32g4xx_hal_pcd.d: -------------------------------------------------------------------------------- 1 | uart-test/stm32g4xx_hal_pcd.o: \ 2 | ..\STM32G4xx_HAL_Driver\Src\stm32g4xx_hal_pcd.c \ 3 | usr\STM32_USB_Device_Library\USB_Device\Target\usbd_conf.h \ 4 | usr\per_conf.h d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdio.h \ 5 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\string.h \ 6 | D:\APP\Keil_v5\ARM\Pack\ARM\CMSIS\5.7.0\CMSIS\DSP\Include\arm_math.h \ 7 | ..\Drivers\CMSIS\Include\cmsis_compiler.h \ 8 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdint.h \ 9 | ..\Drivers\CMSIS\Include\cmsis_armclang.h \ 10 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\arm_compat.h \ 11 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\arm_acle.h \ 12 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\math.h \ 13 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\float.h \ 14 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\limits.h \ 15 | usr\malloc\malloc.h usr\sys.h \ 16 | ..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\stm32g4xx.h \ 17 | ..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\stm32g431xx.h \ 18 | ..\Drivers\CMSIS\Include\core_cm4.h \ 19 | ..\Drivers\CMSIS\Include\cmsis_version.h \ 20 | ..\Drivers\CMSIS\Include\cmsis_compiler.h \ 21 | ..\Drivers\CMSIS\Include\mpu_armv7.h \ 22 | ..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\system_stm32g4xx.h \ 23 | usr\sys.h usr\gpio.h usr\per_conf.h usr\usart.h usr\delay.h \ 24 | usr\timer.h usr\adc.h usr\dma.h usr\spi.h usr\spi_flash\w25qxx.h \ 25 | usr\fatfs\source\fatfs_app.h usr\fatfs\source\ff.h \ 26 | usr\fatfs\source\ffconf.h usr\fatfs\exfuns\exfuns.h \ 27 | usr\fatfs\source\ff.h usr\fatfs\exfuns\fattester.h usr\dac.h \ 28 | usr\opamp.h usr\lcd\lcd.h usr\lcd\st77xx_lcd_init.h usr\osc.h \ 29 | ..\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pcd.h \ 30 | ..\STM32G4xx_HAL_Driver\Inc\stm32g4xx_ll_usb.h \ 31 | ..\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_def.h \ 32 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\stddef.h \ 33 | ..\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pcd_ex.h \ 34 | ..\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pcd.h \ 35 | ..\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_def.h \ 36 | ..\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal.h \ 37 | ..\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_conf.h 38 | -------------------------------------------------------------------------------- /MDK-ARM/uart-test/stm32g4xx_hal_pcd.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G4_OSC/9778f077c6a447817cad48cecee05a23d305e67c/MDK-ARM/uart-test/stm32g4xx_hal_pcd.o -------------------------------------------------------------------------------- /MDK-ARM/uart-test/stm32g4xx_hal_pcd_ex.d: -------------------------------------------------------------------------------- 1 | uart-test/stm32g4xx_hal_pcd_ex.o: \ 2 | ..\STM32G4xx_HAL_Driver\Src\stm32g4xx_hal_pcd_ex.c \ 3 | usr\STM32_USB_Device_Library\USB_Device\Target\usbd_conf.h \ 4 | usr\per_conf.h d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdio.h \ 5 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\string.h \ 6 | D:\APP\Keil_v5\ARM\Pack\ARM\CMSIS\5.7.0\CMSIS\DSP\Include\arm_math.h \ 7 | ..\Drivers\CMSIS\Include\cmsis_compiler.h \ 8 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdint.h \ 9 | ..\Drivers\CMSIS\Include\cmsis_armclang.h \ 10 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\arm_compat.h \ 11 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\arm_acle.h \ 12 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\math.h \ 13 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\float.h \ 14 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\limits.h \ 15 | usr\malloc\malloc.h usr\sys.h \ 16 | ..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\stm32g4xx.h \ 17 | ..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\stm32g431xx.h \ 18 | ..\Drivers\CMSIS\Include\core_cm4.h \ 19 | ..\Drivers\CMSIS\Include\cmsis_version.h \ 20 | ..\Drivers\CMSIS\Include\cmsis_compiler.h \ 21 | ..\Drivers\CMSIS\Include\mpu_armv7.h \ 22 | ..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\system_stm32g4xx.h \ 23 | usr\sys.h usr\gpio.h usr\per_conf.h usr\usart.h usr\delay.h \ 24 | usr\timer.h usr\adc.h usr\dma.h usr\spi.h usr\spi_flash\w25qxx.h \ 25 | usr\fatfs\source\fatfs_app.h usr\fatfs\source\ff.h \ 26 | usr\fatfs\source\ffconf.h usr\fatfs\exfuns\exfuns.h \ 27 | usr\fatfs\source\ff.h usr\fatfs\exfuns\fattester.h usr\dac.h \ 28 | usr\opamp.h usr\lcd\lcd.h usr\lcd\st77xx_lcd_init.h usr\osc.h \ 29 | ..\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pcd_ex.h \ 30 | ..\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_def.h \ 31 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\stddef.h \ 32 | ..\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pcd.h \ 33 | ..\STM32G4xx_HAL_Driver\Inc\stm32g4xx_ll_usb.h \ 34 | ..\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pcd_ex.h \ 35 | ..\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_def.h 36 | -------------------------------------------------------------------------------- /MDK-ARM/uart-test/stm32g4xx_hal_pcd_ex.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G4_OSC/9778f077c6a447817cad48cecee05a23d305e67c/MDK-ARM/uart-test/stm32g4xx_hal_pcd_ex.o -------------------------------------------------------------------------------- /MDK-ARM/uart-test/stm32g4xx_hal_pwr.d: -------------------------------------------------------------------------------- 1 | uart-test/stm32g4xx_hal_pwr.o: \ 2 | ..\Drivers\STM32G4xx_HAL_Driver\Src\stm32g4xx_hal_pwr.c \ 3 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal.h \ 4 | ..\Core\Inc\stm32g4xx_hal_conf.h \ 5 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_rcc.h \ 6 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_def.h \ 7 | ..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\stm32g4xx.h \ 8 | ..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\stm32g431xx.h \ 9 | ..\Drivers\CMSIS\Include\core_cm4.h \ 10 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdint.h \ 11 | ..\Drivers\CMSIS\Include\cmsis_version.h \ 12 | ..\Drivers\CMSIS\Include\cmsis_compiler.h \ 13 | ..\Drivers\CMSIS\Include\cmsis_armclang.h \ 14 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\arm_compat.h \ 15 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\arm_acle.h \ 16 | ..\Drivers\CMSIS\Include\mpu_armv7.h \ 17 | ..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\system_stm32g4xx.h \ 18 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\Legacy\stm32_hal_legacy.h \ 19 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\stddef.h \ 20 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_rcc_ex.h \ 21 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_gpio.h \ 22 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_gpio_ex.h \ 23 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_dma.h \ 24 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_dma_ex.h \ 25 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_cortex.h \ 26 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_exti.h \ 27 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_flash.h \ 28 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_flash_ex.h \ 29 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_flash_ramfunc.h \ 30 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr.h \ 31 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr_ex.h \ 32 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_uart.h \ 33 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_uart_ex.h 34 | -------------------------------------------------------------------------------- /MDK-ARM/uart-test/stm32g4xx_hal_pwr.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G4_OSC/9778f077c6a447817cad48cecee05a23d305e67c/MDK-ARM/uart-test/stm32g4xx_hal_pwr.o -------------------------------------------------------------------------------- /MDK-ARM/uart-test/stm32g4xx_hal_pwr_ex.d: -------------------------------------------------------------------------------- 1 | uart-test/stm32g4xx_hal_pwr_ex.o: \ 2 | ..\Drivers\STM32G4xx_HAL_Driver\Src\stm32g4xx_hal_pwr_ex.c \ 3 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal.h \ 4 | ..\Core\Inc\stm32g4xx_hal_conf.h \ 5 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_rcc.h \ 6 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_def.h \ 7 | ..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\stm32g4xx.h \ 8 | ..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\stm32g431xx.h \ 9 | ..\Drivers\CMSIS\Include\core_cm4.h \ 10 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdint.h \ 11 | ..\Drivers\CMSIS\Include\cmsis_version.h \ 12 | ..\Drivers\CMSIS\Include\cmsis_compiler.h \ 13 | ..\Drivers\CMSIS\Include\cmsis_armclang.h \ 14 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\arm_compat.h \ 15 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\arm_acle.h \ 16 | ..\Drivers\CMSIS\Include\mpu_armv7.h \ 17 | ..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\system_stm32g4xx.h \ 18 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\Legacy\stm32_hal_legacy.h \ 19 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\stddef.h \ 20 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_rcc_ex.h \ 21 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_gpio.h \ 22 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_gpio_ex.h \ 23 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_dma.h \ 24 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_dma_ex.h \ 25 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_cortex.h \ 26 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_exti.h \ 27 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_flash.h \ 28 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_flash_ex.h \ 29 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_flash_ramfunc.h \ 30 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr.h \ 31 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr_ex.h \ 32 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_uart.h \ 33 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_uart_ex.h 34 | -------------------------------------------------------------------------------- /MDK-ARM/uart-test/stm32g4xx_hal_pwr_ex.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G4_OSC/9778f077c6a447817cad48cecee05a23d305e67c/MDK-ARM/uart-test/stm32g4xx_hal_pwr_ex.o -------------------------------------------------------------------------------- /MDK-ARM/uart-test/stm32g4xx_hal_rcc.d: -------------------------------------------------------------------------------- 1 | uart-test/stm32g4xx_hal_rcc.o: \ 2 | ..\Drivers\STM32G4xx_HAL_Driver\Src\stm32g4xx_hal_rcc.c \ 3 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal.h \ 4 | ..\Core\Inc\stm32g4xx_hal_conf.h \ 5 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_rcc.h \ 6 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_def.h \ 7 | ..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\stm32g4xx.h \ 8 | ..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\stm32g431xx.h \ 9 | ..\Drivers\CMSIS\Include\core_cm4.h \ 10 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdint.h \ 11 | ..\Drivers\CMSIS\Include\cmsis_version.h \ 12 | ..\Drivers\CMSIS\Include\cmsis_compiler.h \ 13 | ..\Drivers\CMSIS\Include\cmsis_armclang.h \ 14 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\arm_compat.h \ 15 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\arm_acle.h \ 16 | ..\Drivers\CMSIS\Include\mpu_armv7.h \ 17 | ..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\system_stm32g4xx.h \ 18 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\Legacy\stm32_hal_legacy.h \ 19 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\stddef.h \ 20 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_rcc_ex.h \ 21 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_gpio.h \ 22 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_gpio_ex.h \ 23 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_dma.h \ 24 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_dma_ex.h \ 25 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_cortex.h \ 26 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_exti.h \ 27 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_flash.h \ 28 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_flash_ex.h \ 29 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_flash_ramfunc.h \ 30 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr.h \ 31 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr_ex.h \ 32 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_uart.h \ 33 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_uart_ex.h 34 | -------------------------------------------------------------------------------- /MDK-ARM/uart-test/stm32g4xx_hal_rcc.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G4_OSC/9778f077c6a447817cad48cecee05a23d305e67c/MDK-ARM/uart-test/stm32g4xx_hal_rcc.o -------------------------------------------------------------------------------- /MDK-ARM/uart-test/stm32g4xx_hal_rcc_ex.d: -------------------------------------------------------------------------------- 1 | uart-test/stm32g4xx_hal_rcc_ex.o: \ 2 | ..\Drivers\STM32G4xx_HAL_Driver\Src\stm32g4xx_hal_rcc_ex.c \ 3 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal.h \ 4 | ..\Core\Inc\stm32g4xx_hal_conf.h \ 5 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_rcc.h \ 6 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_def.h \ 7 | ..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\stm32g4xx.h \ 8 | ..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\stm32g431xx.h \ 9 | ..\Drivers\CMSIS\Include\core_cm4.h \ 10 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdint.h \ 11 | ..\Drivers\CMSIS\Include\cmsis_version.h \ 12 | ..\Drivers\CMSIS\Include\cmsis_compiler.h \ 13 | ..\Drivers\CMSIS\Include\cmsis_armclang.h \ 14 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\arm_compat.h \ 15 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\arm_acle.h \ 16 | ..\Drivers\CMSIS\Include\mpu_armv7.h \ 17 | ..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\system_stm32g4xx.h \ 18 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\Legacy\stm32_hal_legacy.h \ 19 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\stddef.h \ 20 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_rcc_ex.h \ 21 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_gpio.h \ 22 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_gpio_ex.h \ 23 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_dma.h \ 24 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_dma_ex.h \ 25 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_cortex.h \ 26 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_exti.h \ 27 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_flash.h \ 28 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_flash_ex.h \ 29 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_flash_ramfunc.h \ 30 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr.h \ 31 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr_ex.h \ 32 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_uart.h \ 33 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_uart_ex.h 34 | -------------------------------------------------------------------------------- /MDK-ARM/uart-test/stm32g4xx_hal_rcc_ex.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G4_OSC/9778f077c6a447817cad48cecee05a23d305e67c/MDK-ARM/uart-test/stm32g4xx_hal_rcc_ex.o -------------------------------------------------------------------------------- /MDK-ARM/uart-test/stm32g4xx_hal_tim.d: -------------------------------------------------------------------------------- 1 | uart-test/stm32g4xx_hal_tim.o: \ 2 | ..\Drivers\STM32G4xx_HAL_Driver\Src\stm32g4xx_hal_tim.c \ 3 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal.h \ 4 | ..\Core\Inc\stm32g4xx_hal_conf.h \ 5 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_rcc.h \ 6 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_def.h \ 7 | ..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\stm32g4xx.h \ 8 | ..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\stm32g431xx.h \ 9 | ..\Drivers\CMSIS\Include\core_cm4.h \ 10 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdint.h \ 11 | ..\Drivers\CMSIS\Include\cmsis_version.h \ 12 | ..\Drivers\CMSIS\Include\cmsis_compiler.h \ 13 | ..\Drivers\CMSIS\Include\cmsis_armclang.h \ 14 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\arm_compat.h \ 15 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\arm_acle.h \ 16 | ..\Drivers\CMSIS\Include\mpu_armv7.h \ 17 | ..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\system_stm32g4xx.h \ 18 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\Legacy\stm32_hal_legacy.h \ 19 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\stddef.h \ 20 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_rcc_ex.h \ 21 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_gpio.h \ 22 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_gpio_ex.h \ 23 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_dma.h \ 24 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_dma_ex.h \ 25 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_cortex.h \ 26 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_exti.h \ 27 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_flash.h \ 28 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_flash_ex.h \ 29 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_flash_ramfunc.h \ 30 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr.h \ 31 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr_ex.h \ 32 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_uart.h \ 33 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_uart_ex.h 34 | -------------------------------------------------------------------------------- /MDK-ARM/uart-test/stm32g4xx_hal_tim.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G4_OSC/9778f077c6a447817cad48cecee05a23d305e67c/MDK-ARM/uart-test/stm32g4xx_hal_tim.o -------------------------------------------------------------------------------- /MDK-ARM/uart-test/stm32g4xx_hal_tim_ex.d: -------------------------------------------------------------------------------- 1 | uart-test/stm32g4xx_hal_tim_ex.o: \ 2 | ..\Drivers\STM32G4xx_HAL_Driver\Src\stm32g4xx_hal_tim_ex.c \ 3 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal.h \ 4 | ..\Core\Inc\stm32g4xx_hal_conf.h \ 5 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_rcc.h \ 6 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_def.h \ 7 | ..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\stm32g4xx.h \ 8 | ..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\stm32g431xx.h \ 9 | ..\Drivers\CMSIS\Include\core_cm4.h \ 10 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdint.h \ 11 | ..\Drivers\CMSIS\Include\cmsis_version.h \ 12 | ..\Drivers\CMSIS\Include\cmsis_compiler.h \ 13 | ..\Drivers\CMSIS\Include\cmsis_armclang.h \ 14 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\arm_compat.h \ 15 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\arm_acle.h \ 16 | ..\Drivers\CMSIS\Include\mpu_armv7.h \ 17 | ..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\system_stm32g4xx.h \ 18 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\Legacy\stm32_hal_legacy.h \ 19 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\stddef.h \ 20 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_rcc_ex.h \ 21 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_gpio.h \ 22 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_gpio_ex.h \ 23 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_dma.h \ 24 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_dma_ex.h \ 25 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_cortex.h \ 26 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_exti.h \ 27 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_flash.h \ 28 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_flash_ex.h \ 29 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_flash_ramfunc.h \ 30 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr.h \ 31 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr_ex.h \ 32 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_uart.h \ 33 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_uart_ex.h 34 | -------------------------------------------------------------------------------- /MDK-ARM/uart-test/stm32g4xx_hal_tim_ex.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G4_OSC/9778f077c6a447817cad48cecee05a23d305e67c/MDK-ARM/uart-test/stm32g4xx_hal_tim_ex.o -------------------------------------------------------------------------------- /MDK-ARM/uart-test/stm32g4xx_hal_uart.d: -------------------------------------------------------------------------------- 1 | uart-test/stm32g4xx_hal_uart.o: \ 2 | ..\Drivers\STM32G4xx_HAL_Driver\Src\stm32g4xx_hal_uart.c \ 3 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal.h \ 4 | ..\Core\Inc\stm32g4xx_hal_conf.h \ 5 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_rcc.h \ 6 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_def.h \ 7 | ..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\stm32g4xx.h \ 8 | ..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\stm32g431xx.h \ 9 | ..\Drivers\CMSIS\Include\core_cm4.h \ 10 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdint.h \ 11 | ..\Drivers\CMSIS\Include\cmsis_version.h \ 12 | ..\Drivers\CMSIS\Include\cmsis_compiler.h \ 13 | ..\Drivers\CMSIS\Include\cmsis_armclang.h \ 14 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\arm_compat.h \ 15 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\arm_acle.h \ 16 | ..\Drivers\CMSIS\Include\mpu_armv7.h \ 17 | ..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\system_stm32g4xx.h \ 18 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\Legacy\stm32_hal_legacy.h \ 19 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\stddef.h \ 20 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_rcc_ex.h \ 21 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_gpio.h \ 22 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_gpio_ex.h \ 23 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_dma.h \ 24 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_dma_ex.h \ 25 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_cortex.h \ 26 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_exti.h \ 27 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_flash.h \ 28 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_flash_ex.h \ 29 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_flash_ramfunc.h \ 30 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr.h \ 31 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr_ex.h \ 32 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_uart.h \ 33 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_uart_ex.h 34 | -------------------------------------------------------------------------------- /MDK-ARM/uart-test/stm32g4xx_hal_uart.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G4_OSC/9778f077c6a447817cad48cecee05a23d305e67c/MDK-ARM/uart-test/stm32g4xx_hal_uart.o -------------------------------------------------------------------------------- /MDK-ARM/uart-test/stm32g4xx_hal_uart_ex.d: -------------------------------------------------------------------------------- 1 | uart-test/stm32g4xx_hal_uart_ex.o: \ 2 | ..\Drivers\STM32G4xx_HAL_Driver\Src\stm32g4xx_hal_uart_ex.c \ 3 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal.h \ 4 | ..\Core\Inc\stm32g4xx_hal_conf.h \ 5 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_rcc.h \ 6 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_def.h \ 7 | ..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\stm32g4xx.h \ 8 | ..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\stm32g431xx.h \ 9 | ..\Drivers\CMSIS\Include\core_cm4.h \ 10 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdint.h \ 11 | ..\Drivers\CMSIS\Include\cmsis_version.h \ 12 | ..\Drivers\CMSIS\Include\cmsis_compiler.h \ 13 | ..\Drivers\CMSIS\Include\cmsis_armclang.h \ 14 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\arm_compat.h \ 15 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\arm_acle.h \ 16 | ..\Drivers\CMSIS\Include\mpu_armv7.h \ 17 | ..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\system_stm32g4xx.h \ 18 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\Legacy\stm32_hal_legacy.h \ 19 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\stddef.h \ 20 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_rcc_ex.h \ 21 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_gpio.h \ 22 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_gpio_ex.h \ 23 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_dma.h \ 24 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_dma_ex.h \ 25 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_cortex.h \ 26 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_exti.h \ 27 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_flash.h \ 28 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_flash_ex.h \ 29 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_flash_ramfunc.h \ 30 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr.h \ 31 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pwr_ex.h \ 32 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_uart.h \ 33 | ..\Drivers\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_uart_ex.h 34 | -------------------------------------------------------------------------------- /MDK-ARM/uart-test/stm32g4xx_hal_uart_ex.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G4_OSC/9778f077c6a447817cad48cecee05a23d305e67c/MDK-ARM/uart-test/stm32g4xx_hal_uart_ex.o -------------------------------------------------------------------------------- /MDK-ARM/uart-test/stm32g4xx_it.d: -------------------------------------------------------------------------------- 1 | uart-test/stm32g4xx_it.o: Core\Src\stm32g4xx_it.c Core\Inc\main.h \ 2 | Core\Inc\stm32g4xx_it.h 3 | -------------------------------------------------------------------------------- /MDK-ARM/uart-test/stm32g4xx_it.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G4_OSC/9778f077c6a447817cad48cecee05a23d305e67c/MDK-ARM/uart-test/stm32g4xx_it.o -------------------------------------------------------------------------------- /MDK-ARM/uart-test/stm32g4xx_ll_usb.d: -------------------------------------------------------------------------------- 1 | uart-test/stm32g4xx_ll_usb.o: \ 2 | ..\STM32G4xx_HAL_Driver\Src\stm32g4xx_ll_usb.c \ 3 | usr\STM32_USB_Device_Library\USB_Device\Target\usbd_conf.h \ 4 | usr\per_conf.h d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdio.h \ 5 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\string.h \ 6 | D:\APP\Keil_v5\ARM\Pack\ARM\CMSIS\5.7.0\CMSIS\DSP\Include\arm_math.h \ 7 | ..\Drivers\CMSIS\Include\cmsis_compiler.h \ 8 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdint.h \ 9 | ..\Drivers\CMSIS\Include\cmsis_armclang.h \ 10 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\arm_compat.h \ 11 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\arm_acle.h \ 12 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\math.h \ 13 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\float.h \ 14 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\limits.h \ 15 | usr\malloc\malloc.h usr\sys.h \ 16 | ..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\stm32g4xx.h \ 17 | ..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\stm32g431xx.h \ 18 | ..\Drivers\CMSIS\Include\core_cm4.h \ 19 | ..\Drivers\CMSIS\Include\cmsis_version.h \ 20 | ..\Drivers\CMSIS\Include\cmsis_compiler.h \ 21 | ..\Drivers\CMSIS\Include\mpu_armv7.h \ 22 | ..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\system_stm32g4xx.h \ 23 | usr\sys.h usr\gpio.h usr\per_conf.h usr\usart.h usr\delay.h \ 24 | usr\timer.h usr\adc.h usr\dma.h usr\spi.h usr\spi_flash\w25qxx.h \ 25 | usr\fatfs\source\fatfs_app.h usr\fatfs\source\ff.h \ 26 | usr\fatfs\source\ffconf.h usr\fatfs\exfuns\exfuns.h \ 27 | usr\fatfs\source\ff.h usr\fatfs\exfuns\fattester.h usr\dac.h \ 28 | usr\opamp.h usr\lcd\lcd.h usr\lcd\st77xx_lcd_init.h usr\osc.h \ 29 | ..\STM32G4xx_HAL_Driver\Inc\stm32g4xx_ll_usb.h \ 30 | ..\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_def.h \ 31 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\stddef.h 32 | -------------------------------------------------------------------------------- /MDK-ARM/uart-test/stm32g4xx_ll_usb.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G4_OSC/9778f077c6a447817cad48cecee05a23d305e67c/MDK-ARM/uart-test/stm32g4xx_ll_usb.o -------------------------------------------------------------------------------- /MDK-ARM/uart-test/supportfunctions.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G4_OSC/9778f077c6a447817cad48cecee05a23d305e67c/MDK-ARM/uart-test/supportfunctions.o -------------------------------------------------------------------------------- /MDK-ARM/uart-test/svmfunctions.d: -------------------------------------------------------------------------------- 1 | uart-test/svmfunctions.o: \ 2 | d:\APP\Keil_v5\ARM\PACK\ARM\CMSIS\5.7.0\CMSIS\DSP\Source\SVMFunctions\SVMFunctions.c \ 3 | d:\APP\Keil_v5\ARM\PACK\ARM\CMSIS\5.7.0\CMSIS\DSP\Source\SVMFunctions\arm_svm_linear_init_f32.c \ 4 | D:\APP\Keil_v5\ARM\Pack\ARM\CMSIS\5.7.0\CMSIS\DSP\Include\arm_math.h \ 5 | ..\Drivers\CMSIS\Include\cmsis_compiler.h \ 6 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdint.h \ 7 | ..\Drivers\CMSIS\Include\cmsis_armclang.h \ 8 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\arm_compat.h \ 9 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\arm_acle.h \ 10 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\string.h \ 11 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\math.h \ 12 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\float.h \ 13 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\limits.h \ 14 | d:\APP\Keil_v5\ARM\PACK\ARM\CMSIS\5.7.0\CMSIS\DSP\Source\SVMFunctions\arm_svm_linear_predict_f32.c \ 15 | d:\APP\Keil_v5\ARM\PACK\ARM\CMSIS\5.7.0\CMSIS\DSP\Source\SVMFunctions\arm_svm_polynomial_init_f32.c \ 16 | d:\APP\Keil_v5\ARM\PACK\ARM\CMSIS\5.7.0\CMSIS\DSP\Source\SVMFunctions\arm_svm_polynomial_predict_f32.c \ 17 | d:\APP\Keil_v5\ARM\PACK\ARM\CMSIS\5.7.0\CMSIS\DSP\Source\SVMFunctions\arm_svm_rbf_init_f32.c \ 18 | d:\APP\Keil_v5\ARM\PACK\ARM\CMSIS\5.7.0\CMSIS\DSP\Source\SVMFunctions\arm_svm_rbf_predict_f32.c \ 19 | d:\APP\Keil_v5\ARM\PACK\ARM\CMSIS\5.7.0\CMSIS\DSP\Source\SVMFunctions\arm_svm_sigmoid_init_f32.c \ 20 | d:\APP\Keil_v5\ARM\PACK\ARM\CMSIS\5.7.0\CMSIS\DSP\Source\SVMFunctions\arm_svm_sigmoid_predict_f32.c 21 | -------------------------------------------------------------------------------- /MDK-ARM/uart-test/svmfunctions.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G4_OSC/9778f077c6a447817cad48cecee05a23d305e67c/MDK-ARM/uart-test/svmfunctions.o -------------------------------------------------------------------------------- /MDK-ARM/uart-test/sys.d: -------------------------------------------------------------------------------- 1 | uart-test/sys.o: usr\sys.c usr\per_conf.h \ 2 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdio.h \ 3 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\string.h \ 4 | D:\APP\Keil_v5\ARM\Pack\ARM\CMSIS\5.7.0\CMSIS\DSP\Include\arm_math.h \ 5 | ..\Drivers\CMSIS\Include\cmsis_compiler.h \ 6 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdint.h \ 7 | ..\Drivers\CMSIS\Include\cmsis_armclang.h \ 8 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\arm_compat.h \ 9 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\arm_acle.h \ 10 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\math.h \ 11 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\float.h \ 12 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\limits.h \ 13 | usr\malloc\malloc.h usr\sys.h \ 14 | ..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\stm32g4xx.h \ 15 | ..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\stm32g431xx.h \ 16 | ..\Drivers\CMSIS\Include\core_cm4.h \ 17 | ..\Drivers\CMSIS\Include\cmsis_version.h \ 18 | ..\Drivers\CMSIS\Include\cmsis_compiler.h \ 19 | ..\Drivers\CMSIS\Include\mpu_armv7.h \ 20 | ..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\system_stm32g4xx.h \ 21 | usr\sys.h usr\gpio.h usr\usart.h usr\delay.h usr\timer.h usr\adc.h \ 22 | usr\dma.h usr\spi.h usr\spi_flash\w25qxx.h usr\per_conf.h \ 23 | usr\fatfs\source\fatfs_app.h usr\fatfs\source\ff.h \ 24 | usr\fatfs\source\ffconf.h usr\fatfs\exfuns\exfuns.h \ 25 | usr\fatfs\source\ff.h usr\fatfs\exfuns\fattester.h usr\dac.h \ 26 | usr\opamp.h usr\lcd\lcd.h usr\lcd\st77xx_lcd_init.h usr\osc.h 27 | -------------------------------------------------------------------------------- /MDK-ARM/uart-test/sys.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G4_OSC/9778f077c6a447817cad48cecee05a23d305e67c/MDK-ARM/uart-test/sys.o -------------------------------------------------------------------------------- /MDK-ARM/uart-test/system_stm32g4xx.d: -------------------------------------------------------------------------------- 1 | uart-test/system_stm32g4xx.o: Core\Src\system_stm32g4xx.c \ 2 | ..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\stm32g4xx.h \ 3 | ..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\stm32g431xx.h \ 4 | ..\Drivers\CMSIS\Include\core_cm4.h \ 5 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdint.h \ 6 | ..\Drivers\CMSIS\Include\cmsis_version.h \ 7 | ..\Drivers\CMSIS\Include\cmsis_compiler.h \ 8 | ..\Drivers\CMSIS\Include\cmsis_armclang.h \ 9 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\arm_compat.h \ 10 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\arm_acle.h \ 11 | ..\Drivers\CMSIS\Include\mpu_armv7.h \ 12 | ..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\system_stm32g4xx.h 13 | -------------------------------------------------------------------------------- /MDK-ARM/uart-test/system_stm32g4xx.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G4_OSC/9778f077c6a447817cad48cecee05a23d305e67c/MDK-ARM/uart-test/system_stm32g4xx.o -------------------------------------------------------------------------------- /MDK-ARM/uart-test/timer.d: -------------------------------------------------------------------------------- 1 | uart-test/timer.o: usr\timer.c usr\per_conf.h \ 2 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdio.h \ 3 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\string.h \ 4 | D:\APP\Keil_v5\ARM\Pack\ARM\CMSIS\5.7.0\CMSIS\DSP\Include\arm_math.h \ 5 | ..\Drivers\CMSIS\Include\cmsis_compiler.h \ 6 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdint.h \ 7 | ..\Drivers\CMSIS\Include\cmsis_armclang.h \ 8 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\arm_compat.h \ 9 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\arm_acle.h \ 10 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\math.h \ 11 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\float.h \ 12 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\limits.h \ 13 | usr\malloc\malloc.h usr\sys.h \ 14 | ..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\stm32g4xx.h \ 15 | ..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\stm32g431xx.h \ 16 | ..\Drivers\CMSIS\Include\core_cm4.h \ 17 | ..\Drivers\CMSIS\Include\cmsis_version.h \ 18 | ..\Drivers\CMSIS\Include\cmsis_compiler.h \ 19 | ..\Drivers\CMSIS\Include\mpu_armv7.h \ 20 | ..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\system_stm32g4xx.h \ 21 | usr\sys.h usr\gpio.h usr\usart.h usr\delay.h usr\timer.h usr\adc.h \ 22 | usr\dma.h usr\spi.h usr\spi_flash\w25qxx.h usr\per_conf.h \ 23 | usr\fatfs\source\fatfs_app.h usr\fatfs\source\ff.h \ 24 | usr\fatfs\source\ffconf.h usr\fatfs\exfuns\exfuns.h \ 25 | usr\fatfs\source\ff.h usr\fatfs\exfuns\fattester.h usr\dac.h \ 26 | usr\opamp.h usr\lcd\lcd.h usr\lcd\st77xx_lcd_init.h usr\osc.h 27 | -------------------------------------------------------------------------------- /MDK-ARM/uart-test/timer.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G4_OSC/9778f077c6a447817cad48cecee05a23d305e67c/MDK-ARM/uart-test/timer.o -------------------------------------------------------------------------------- /MDK-ARM/uart-test/transformfunctions.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G4_OSC/9778f077c6a447817cad48cecee05a23d305e67c/MDK-ARM/uart-test/transformfunctions.o -------------------------------------------------------------------------------- /MDK-ARM/uart-test/uart-test.axf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G4_OSC/9778f077c6a447817cad48cecee05a23d305e67c/MDK-ARM/uart-test/uart-test.axf -------------------------------------------------------------------------------- /MDK-ARM/uart-test/uart-test.build_log.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G4_OSC/9778f077c6a447817cad48cecee05a23d305e67c/MDK-ARM/uart-test/uart-test.build_log.htm -------------------------------------------------------------------------------- /MDK-ARM/uart-test/uart-test.lnp: -------------------------------------------------------------------------------- 1 | --cpu=Cortex-M4.fp --lto 2 | "uart-test\startup_stm32g431xx.o" 3 | "uart-test\main.o" 4 | "uart-test\system_stm32g4xx.o" 5 | "uart-test\sys.o" 6 | "uart-test\usart.o" 7 | "uart-test\delay.o" 8 | "uart-test\spi.o" 9 | "uart-test\st77xx_lcd_init.o" 10 | "uart-test\timer.o" 11 | "uart-test\adc.o" 12 | "uart-test\dma.o" 13 | "uart-test\osc.o" 14 | "uart-test\gpio.o" 15 | "uart-test\lcd.o" 16 | "uart-test\dac.o" 17 | "uart-test\opamp.o" 18 | "uart-test\sdmmc.o" 19 | "uart-test\malloc.o" 20 | "uart-test\usr_sd_app.o" 21 | "uart-test\w25qxx.o" 22 | "uart-test\basicmathfunctions.o" 23 | "uart-test\bayesfunctions.o" 24 | "uart-test\commontables.o" 25 | "uart-test\complexmathfunctions.o" 26 | "uart-test\controllerfunctions.o" 27 | "uart-test\distancefunctions.o" 28 | "uart-test\fastmathfunctions.o" 29 | "uart-test\filteringfunctions.o" 30 | "uart-test\matrixfunctions.o" 31 | "uart-test\svmfunctions.o" 32 | "uart-test\statisticsfunctions.o" 33 | "uart-test\supportfunctions.o" 34 | "uart-test\transformfunctions.o" 35 | --library_type=microlib --strict --scatter "uart-test\uart-test.sct" 36 | --summary_stderr --info summarysizes --map --load_addr_map_info --xref --callgraph --symbols 37 | --info sizes --info totals --info unused --info veneers 38 | --list "uart-test.map" -o uart-test\uart-test.axf -------------------------------------------------------------------------------- /MDK-ARM/uart-test/uart-test.sct: -------------------------------------------------------------------------------- 1 | ; ************************************************************* 2 | ; *** Scatter-Loading Description File generated by uVision *** 3 | ; ************************************************************* 4 | 5 | LR_IROM1 0x08000000 0x00008000 { ; load region size_region 6 | ER_IROM1 0x08000000 0x00008000 { ; load address = execution address 7 | *.o (RESET, +First) 8 | *(InRoot$$Sections) 9 | .ANY (+RO) 10 | .ANY (+XO) 11 | } 12 | RW_IRAM1 0x20000000 0x00008000 { ; RW data 13 | .ANY (+RW +ZI) 14 | } 15 | } 16 | 17 | -------------------------------------------------------------------------------- /MDK-ARM/uart-test/uart-test_sct.Bak: -------------------------------------------------------------------------------- 1 | ; ************************************************************* 2 | ; *** Scatter-Loading Description File generated by uVision *** 3 | ; ************************************************************* 4 | 5 | LR_IROM1 0x08000000 0x00080000 { ; load region size_region 6 | ER_IROM1 0x08000000 0x00080000 { ; load address = execution address 7 | *.o (RESET, +First) 8 | *(InRoot$$Sections) 9 | .ANY (+RO) 10 | .ANY (+XO) 11 | } 12 | RW_IRAM1 0x20000000 0x00008000 { ; RW data 13 | .ANY (+RW +ZI) 14 | } 15 | } 16 | 17 | -------------------------------------------------------------------------------- /MDK-ARM/uart-test/usart.d: -------------------------------------------------------------------------------- 1 | uart-test/usart.o: usr\usart.c usr\per_conf.h \ 2 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdio.h \ 3 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\string.h \ 4 | D:\APP\Keil_v5\ARM\Pack\ARM\CMSIS\5.7.0\CMSIS\DSP\Include\arm_math.h \ 5 | ..\Drivers\CMSIS\Include\cmsis_compiler.h \ 6 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdint.h \ 7 | ..\Drivers\CMSIS\Include\cmsis_armclang.h \ 8 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\arm_compat.h \ 9 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\arm_acle.h \ 10 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\math.h \ 11 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\float.h \ 12 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\limits.h \ 13 | usr\malloc\malloc.h usr\sys.h \ 14 | ..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\stm32g4xx.h \ 15 | ..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\stm32g431xx.h \ 16 | ..\Drivers\CMSIS\Include\core_cm4.h \ 17 | ..\Drivers\CMSIS\Include\cmsis_version.h \ 18 | ..\Drivers\CMSIS\Include\cmsis_compiler.h \ 19 | ..\Drivers\CMSIS\Include\mpu_armv7.h \ 20 | ..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\system_stm32g4xx.h \ 21 | usr\sys.h usr\gpio.h usr\usart.h usr\delay.h usr\timer.h usr\adc.h \ 22 | usr\dma.h usr\spi.h usr\spi_flash\w25qxx.h usr\per_conf.h \ 23 | usr\fatfs\source\fatfs_app.h usr\fatfs\source\ff.h \ 24 | usr\fatfs\source\ffconf.h usr\fatfs\exfuns\exfuns.h \ 25 | usr\fatfs\source\ff.h usr\fatfs\exfuns\fattester.h usr\dac.h \ 26 | usr\opamp.h usr\lcd\lcd.h usr\lcd\st77xx_lcd_init.h usr\osc.h 27 | -------------------------------------------------------------------------------- /MDK-ARM/uart-test/usart.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G4_OSC/9778f077c6a447817cad48cecee05a23d305e67c/MDK-ARM/uart-test/usart.o -------------------------------------------------------------------------------- /MDK-ARM/uart-test/usb_device.d: -------------------------------------------------------------------------------- 1 | uart-test/usb_device.o: \ 2 | usr\STM32_USB_Device_Library\USB_Device\App\usb_device.c \ 3 | usr\STM32_USB_Device_Library\USB_Device\App\usb_device.h \ 4 | usr\per_conf.h d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdio.h \ 5 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\string.h \ 6 | D:\APP\Keil_v5\ARM\Pack\ARM\CMSIS\5.7.0\CMSIS\DSP\Include\arm_math.h \ 7 | ..\Drivers\CMSIS\Include\cmsis_compiler.h \ 8 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdint.h \ 9 | ..\Drivers\CMSIS\Include\cmsis_armclang.h \ 10 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\arm_compat.h \ 11 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\arm_acle.h \ 12 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\math.h \ 13 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\float.h \ 14 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\limits.h usr\sys.h \ 15 | ..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\stm32g4xx.h \ 16 | ..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\stm32g431xx.h \ 17 | ..\Drivers\CMSIS\Include\core_cm4.h \ 18 | ..\Drivers\CMSIS\Include\cmsis_version.h \ 19 | ..\Drivers\CMSIS\Include\cmsis_compiler.h \ 20 | ..\Drivers\CMSIS\Include\mpu_armv7.h \ 21 | ..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\system_stm32g4xx.h \ 22 | usr\gpio.h usr\usart.h usr\delay.h usr\per_conf.h usr\timer.h \ 23 | usr\adc.h usr\dma.h usr\spi.h usr\dac.h usr\opamp.h usr\lcd\lcd.h \ 24 | usr\lcd\st77xx_lcd_init.h \ 25 | usr\STM32_USB_Device_Library\USB_Device\App\usbd_cdc_if.h \ 26 | usr\STM32_USB_Device_Library\Core\Inc\usbd_def.h \ 27 | usr\STM32_USB_Device_Library\USB_Device\Target\usbd_conf.h \ 28 | usr\STM32_USB_Device_Library\Core\Inc\usbd_core.h \ 29 | usr\STM32_USB_Device_Library\Core\Inc\usbd_def.h \ 30 | usr\STM32_USB_Device_Library\Core\Inc\usbd_ioreq.h \ 31 | usr\STM32_USB_Device_Library\Core\Inc\usbd_ctlreq.h \ 32 | ..\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pcd.h \ 33 | ..\STM32G4xx_HAL_Driver\Inc\stm32g4xx_ll_usb.h \ 34 | ..\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_def.h \ 35 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\stddef.h \ 36 | ..\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pcd_ex.h \ 37 | ..\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pcd.h \ 38 | usr\STM32_USB_Device_Library\USB_Device\App\usbd_desc.h \ 39 | usr\STM32_USB_Device_Library\Class\CDC\Inc\usbd_cdc.h usr\osc.h 40 | -------------------------------------------------------------------------------- /MDK-ARM/uart-test/usb_device.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G4_OSC/9778f077c6a447817cad48cecee05a23d305e67c/MDK-ARM/uart-test/usb_device.o -------------------------------------------------------------------------------- /MDK-ARM/uart-test/usb_top.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G4_OSC/9778f077c6a447817cad48cecee05a23d305e67c/MDK-ARM/uart-test/usb_top.o -------------------------------------------------------------------------------- /MDK-ARM/uart-test/usbd_cdc.d: -------------------------------------------------------------------------------- 1 | uart-test/usbd_cdc.o: \ 2 | usr\STM32_USB_Device_Library\Class\CDC\Src\usbd_cdc.c \ 3 | usr\STM32_USB_Device_Library\Class\CDC\Inc\usbd_cdc.h usr\per_conf.h \ 4 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdio.h \ 5 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\string.h \ 6 | D:\APP\Keil_v5\ARM\Pack\ARM\CMSIS\5.7.0\CMSIS\DSP\Include\arm_math.h \ 7 | ..\Drivers\CMSIS\Include\cmsis_compiler.h \ 8 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdint.h \ 9 | ..\Drivers\CMSIS\Include\cmsis_armclang.h \ 10 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\arm_compat.h \ 11 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\arm_acle.h \ 12 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\math.h \ 13 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\float.h \ 14 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\limits.h \ 15 | usr\malloc\malloc.h usr\sys.h \ 16 | ..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\stm32g4xx.h \ 17 | ..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\stm32g431xx.h \ 18 | ..\Drivers\CMSIS\Include\core_cm4.h \ 19 | ..\Drivers\CMSIS\Include\cmsis_version.h \ 20 | ..\Drivers\CMSIS\Include\cmsis_compiler.h \ 21 | ..\Drivers\CMSIS\Include\mpu_armv7.h \ 22 | ..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\system_stm32g4xx.h \ 23 | usr\sys.h usr\gpio.h usr\per_conf.h usr\usart.h usr\delay.h \ 24 | usr\timer.h usr\adc.h usr\dma.h usr\spi.h usr\spi_flash\w25qxx.h \ 25 | usr\fatfs\source\fatfs_app.h usr\fatfs\source\ff.h \ 26 | usr\fatfs\source\ffconf.h usr\fatfs\exfuns\exfuns.h \ 27 | usr\fatfs\source\ff.h usr\fatfs\exfuns\fattester.h usr\dac.h \ 28 | usr\opamp.h usr\lcd\lcd.h usr\lcd\st77xx_lcd_init.h usr\osc.h 29 | -------------------------------------------------------------------------------- /MDK-ARM/uart-test/usbd_cdc_if.d: -------------------------------------------------------------------------------- 1 | uart-test/usbd_cdc_if.o: \ 2 | usr\STM32_USB_Device_Library\USB_Device\App\usbd_cdc_if.c \ 3 | usr\STM32_USB_Device_Library\USB_Device\App\usbd_cdc_if.h \ 4 | usr\per_conf.h d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdio.h \ 5 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\string.h \ 6 | D:\APP\Keil_v5\ARM\Pack\ARM\CMSIS\5.7.0\CMSIS\DSP\Include\arm_math.h \ 7 | ..\Drivers\CMSIS\Include\cmsis_compiler.h \ 8 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdint.h \ 9 | ..\Drivers\CMSIS\Include\cmsis_armclang.h \ 10 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\arm_compat.h \ 11 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\arm_acle.h \ 12 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\math.h \ 13 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\float.h \ 14 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\limits.h \ 15 | usr\malloc\malloc.h usr\sys.h \ 16 | ..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\stm32g4xx.h \ 17 | ..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\stm32g431xx.h \ 18 | ..\Drivers\CMSIS\Include\core_cm4.h \ 19 | ..\Drivers\CMSIS\Include\cmsis_version.h \ 20 | ..\Drivers\CMSIS\Include\cmsis_compiler.h \ 21 | ..\Drivers\CMSIS\Include\mpu_armv7.h \ 22 | ..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\system_stm32g4xx.h \ 23 | usr\sys.h usr\gpio.h usr\per_conf.h usr\usart.h usr\delay.h \ 24 | usr\timer.h usr\adc.h usr\dma.h usr\spi.h usr\spi_flash\w25qxx.h \ 25 | usr\fatfs\source\fatfs_app.h usr\fatfs\source\ff.h \ 26 | usr\fatfs\source\ffconf.h usr\fatfs\exfuns\exfuns.h \ 27 | usr\fatfs\source\ff.h usr\fatfs\exfuns\fattester.h usr\dac.h \ 28 | usr\opamp.h usr\lcd\lcd.h usr\lcd\st77xx_lcd_init.h usr\osc.h \ 29 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdarg.h 30 | -------------------------------------------------------------------------------- /MDK-ARM/uart-test/usbd_conf.d: -------------------------------------------------------------------------------- 1 | uart-test/usbd_conf.o: \ 2 | usr\STM32_USB_Device_Library\USB_Device\Target\usbd_conf.c \ 3 | usr\STM32_USB_Device_Library\USB_Device\Target\usbd_conf.h \ 4 | usr\per_conf.h d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdio.h \ 5 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\string.h \ 6 | D:\APP\Keil_v5\ARM\Pack\ARM\CMSIS\5.7.0\CMSIS\DSP\Include\arm_math.h \ 7 | ..\Drivers\CMSIS\Include\cmsis_compiler.h \ 8 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdint.h \ 9 | ..\Drivers\CMSIS\Include\cmsis_armclang.h \ 10 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\arm_compat.h \ 11 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\arm_acle.h \ 12 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\math.h \ 13 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\float.h \ 14 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\limits.h \ 15 | usr\malloc\malloc.h usr\sys.h \ 16 | ..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\stm32g4xx.h \ 17 | ..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\stm32g431xx.h \ 18 | ..\Drivers\CMSIS\Include\core_cm4.h \ 19 | ..\Drivers\CMSIS\Include\cmsis_version.h \ 20 | ..\Drivers\CMSIS\Include\cmsis_compiler.h \ 21 | ..\Drivers\CMSIS\Include\mpu_armv7.h \ 22 | ..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\system_stm32g4xx.h \ 23 | usr\sys.h usr\gpio.h usr\per_conf.h usr\usart.h usr\delay.h \ 24 | usr\timer.h usr\adc.h usr\dma.h usr\spi.h usr\spi_flash\w25qxx.h \ 25 | usr\fatfs\source\fatfs_app.h usr\fatfs\source\ff.h \ 26 | usr\fatfs\source\ffconf.h usr\fatfs\exfuns\exfuns.h \ 27 | usr\fatfs\source\ff.h usr\fatfs\exfuns\fattester.h usr\dac.h \ 28 | usr\opamp.h usr\lcd\lcd.h usr\lcd\st77xx_lcd_init.h usr\osc.h 29 | -------------------------------------------------------------------------------- /MDK-ARM/uart-test/usbd_core.d: -------------------------------------------------------------------------------- 1 | uart-test/usbd_core.o: usr\STM32_USB_Device_Library\Core\Src\usbd_core.c \ 2 | usr\STM32_USB_Device_Library\Core\Inc\usbd_core.h \ 3 | usr\STM32_USB_Device_Library\USB_Device\Target\usbd_conf.h \ 4 | usr\per_conf.h d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdio.h \ 5 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\string.h \ 6 | D:\APP\Keil_v5\ARM\Pack\ARM\CMSIS\5.7.0\CMSIS\DSP\Include\arm_math.h \ 7 | ..\Drivers\CMSIS\Include\cmsis_compiler.h \ 8 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdint.h \ 9 | ..\Drivers\CMSIS\Include\cmsis_armclang.h \ 10 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\arm_compat.h \ 11 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\arm_acle.h \ 12 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\math.h \ 13 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\float.h \ 14 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\limits.h \ 15 | usr\malloc\malloc.h usr\sys.h \ 16 | ..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\stm32g4xx.h \ 17 | ..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\stm32g431xx.h \ 18 | ..\Drivers\CMSIS\Include\core_cm4.h \ 19 | ..\Drivers\CMSIS\Include\cmsis_version.h \ 20 | ..\Drivers\CMSIS\Include\cmsis_compiler.h \ 21 | ..\Drivers\CMSIS\Include\mpu_armv7.h \ 22 | ..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\system_stm32g4xx.h \ 23 | usr\sys.h usr\gpio.h usr\per_conf.h usr\usart.h usr\delay.h \ 24 | usr\timer.h usr\adc.h usr\dma.h usr\spi.h usr\spi_flash\w25qxx.h \ 25 | usr\fatfs\source\fatfs_app.h usr\fatfs\source\ff.h \ 26 | usr\fatfs\source\ffconf.h usr\fatfs\exfuns\exfuns.h \ 27 | usr\fatfs\source\ff.h usr\fatfs\exfuns\fattester.h usr\dac.h \ 28 | usr\opamp.h usr\lcd\lcd.h usr\lcd\st77xx_lcd_init.h usr\osc.h \ 29 | usr\STM32_USB_Device_Library\Core\Inc\usbd_def.h \ 30 | usr\STM32_USB_Device_Library\Core\Inc\usbd_ioreq.h \ 31 | usr\STM32_USB_Device_Library\Core\Inc\usbd_ctlreq.h \ 32 | ..\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pcd.h \ 33 | ..\STM32G4xx_HAL_Driver\Inc\stm32g4xx_ll_usb.h \ 34 | ..\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_def.h \ 35 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\stddef.h \ 36 | ..\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pcd_ex.h \ 37 | ..\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pcd.h 38 | -------------------------------------------------------------------------------- /MDK-ARM/uart-test/usbd_core.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G4_OSC/9778f077c6a447817cad48cecee05a23d305e67c/MDK-ARM/uart-test/usbd_core.o -------------------------------------------------------------------------------- /MDK-ARM/uart-test/usbd_ctlreq.d: -------------------------------------------------------------------------------- 1 | uart-test/usbd_ctlreq.o: \ 2 | usr\STM32_USB_Device_Library\Core\Src\usbd_ctlreq.c \ 3 | usr\STM32_USB_Device_Library\Core\Inc\usbd_ctlreq.h usr\per_conf.h \ 4 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdio.h \ 5 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\string.h \ 6 | D:\APP\Keil_v5\ARM\Pack\ARM\CMSIS\5.7.0\CMSIS\DSP\Include\arm_math.h \ 7 | ..\Drivers\CMSIS\Include\cmsis_compiler.h \ 8 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdint.h \ 9 | ..\Drivers\CMSIS\Include\cmsis_armclang.h \ 10 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\arm_compat.h \ 11 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\arm_acle.h \ 12 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\math.h \ 13 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\float.h \ 14 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\limits.h \ 15 | usr\malloc\malloc.h usr\sys.h \ 16 | ..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\stm32g4xx.h \ 17 | ..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\stm32g431xx.h \ 18 | ..\Drivers\CMSIS\Include\core_cm4.h \ 19 | ..\Drivers\CMSIS\Include\cmsis_version.h \ 20 | ..\Drivers\CMSIS\Include\cmsis_compiler.h \ 21 | ..\Drivers\CMSIS\Include\mpu_armv7.h \ 22 | ..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\system_stm32g4xx.h \ 23 | usr\sys.h usr\gpio.h usr\per_conf.h usr\usart.h usr\delay.h \ 24 | usr\timer.h usr\adc.h usr\dma.h usr\spi.h usr\spi_flash\w25qxx.h \ 25 | usr\fatfs\source\fatfs_app.h usr\fatfs\source\ff.h \ 26 | usr\fatfs\source\ffconf.h usr\fatfs\exfuns\exfuns.h \ 27 | usr\fatfs\source\ff.h usr\fatfs\exfuns\fattester.h usr\dac.h \ 28 | usr\opamp.h usr\lcd\lcd.h usr\lcd\st77xx_lcd_init.h usr\osc.h 29 | -------------------------------------------------------------------------------- /MDK-ARM/uart-test/usbd_desc.d: -------------------------------------------------------------------------------- 1 | uart-test/usbd_desc.o: \ 2 | usr\STM32_USB_Device_Library\USB_Device\App\usbd_desc.c \ 3 | usr\STM32_USB_Device_Library\Core\Inc\usbd_core.h \ 4 | usr\STM32_USB_Device_Library\USB_Device\Target\usbd_conf.h \ 5 | usr\per_conf.h d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdio.h \ 6 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\string.h \ 7 | D:\APP\Keil_v5\ARM\Pack\ARM\CMSIS\5.7.0\CMSIS\DSP\Include\arm_math.h \ 8 | ..\Drivers\CMSIS\Include\cmsis_compiler.h \ 9 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdint.h \ 10 | ..\Drivers\CMSIS\Include\cmsis_armclang.h \ 11 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\arm_compat.h \ 12 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\arm_acle.h \ 13 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\math.h \ 14 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\float.h \ 15 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\limits.h \ 16 | usr\malloc\malloc.h usr\sys.h \ 17 | ..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\stm32g4xx.h \ 18 | ..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\stm32g431xx.h \ 19 | ..\Drivers\CMSIS\Include\core_cm4.h \ 20 | ..\Drivers\CMSIS\Include\cmsis_version.h \ 21 | ..\Drivers\CMSIS\Include\cmsis_compiler.h \ 22 | ..\Drivers\CMSIS\Include\mpu_armv7.h \ 23 | ..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\system_stm32g4xx.h \ 24 | usr\sys.h usr\gpio.h usr\per_conf.h usr\usart.h usr\delay.h \ 25 | usr\timer.h usr\adc.h usr\dma.h usr\spi.h usr\spi_flash\w25qxx.h \ 26 | usr\fatfs\source\fatfs_app.h usr\fatfs\source\ff.h \ 27 | usr\fatfs\source\ffconf.h usr\fatfs\exfuns\exfuns.h \ 28 | usr\fatfs\source\ff.h usr\fatfs\exfuns\fattester.h usr\dac.h \ 29 | usr\opamp.h usr\lcd\lcd.h usr\lcd\st77xx_lcd_init.h usr\osc.h \ 30 | usr\STM32_USB_Device_Library\Core\Inc\usbd_def.h \ 31 | usr\STM32_USB_Device_Library\Core\Inc\usbd_ioreq.h \ 32 | usr\STM32_USB_Device_Library\Core\Inc\usbd_ctlreq.h \ 33 | ..\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pcd.h \ 34 | ..\STM32G4xx_HAL_Driver\Inc\stm32g4xx_ll_usb.h \ 35 | ..\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_def.h \ 36 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\stddef.h \ 37 | ..\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pcd_ex.h \ 38 | ..\STM32G4xx_HAL_Driver\Inc\stm32g4xx_hal_pcd.h \ 39 | usr\STM32_USB_Device_Library\USB_Device\App\usbd_desc.h \ 40 | usr\STM32_USB_Device_Library\Core\Inc\usbd_def.h 41 | -------------------------------------------------------------------------------- /MDK-ARM/uart-test/usbd_desc.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G4_OSC/9778f077c6a447817cad48cecee05a23d305e67c/MDK-ARM/uart-test/usbd_desc.o -------------------------------------------------------------------------------- /MDK-ARM/uart-test/usbd_ioreq.d: -------------------------------------------------------------------------------- 1 | uart-test/usbd_ioreq.o: \ 2 | usr\STM32_USB_Device_Library\Core\Src\usbd_ioreq.c \ 3 | usr\STM32_USB_Device_Library\Core\Inc\usbd_ioreq.h usr\per_conf.h \ 4 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdio.h \ 5 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\string.h \ 6 | D:\APP\Keil_v5\ARM\Pack\ARM\CMSIS\5.7.0\CMSIS\DSP\Include\arm_math.h \ 7 | ..\Drivers\CMSIS\Include\cmsis_compiler.h \ 8 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdint.h \ 9 | ..\Drivers\CMSIS\Include\cmsis_armclang.h \ 10 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\arm_compat.h \ 11 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\arm_acle.h \ 12 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\math.h \ 13 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\float.h \ 14 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\limits.h \ 15 | usr\malloc\malloc.h usr\sys.h \ 16 | ..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\stm32g4xx.h \ 17 | ..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\stm32g431xx.h \ 18 | ..\Drivers\CMSIS\Include\core_cm4.h \ 19 | ..\Drivers\CMSIS\Include\cmsis_version.h \ 20 | ..\Drivers\CMSIS\Include\cmsis_compiler.h \ 21 | ..\Drivers\CMSIS\Include\mpu_armv7.h \ 22 | ..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\system_stm32g4xx.h \ 23 | usr\sys.h usr\gpio.h usr\per_conf.h usr\usart.h usr\delay.h \ 24 | usr\timer.h usr\adc.h usr\dma.h usr\spi.h usr\spi_flash\w25qxx.h \ 25 | usr\fatfs\source\fatfs_app.h usr\fatfs\source\ff.h \ 26 | usr\fatfs\source\ffconf.h usr\fatfs\exfuns\exfuns.h \ 27 | usr\fatfs\source\ff.h usr\fatfs\exfuns\fattester.h usr\dac.h \ 28 | usr\opamp.h usr\lcd\lcd.h usr\lcd\st77xx_lcd_init.h usr\osc.h 29 | -------------------------------------------------------------------------------- /MDK-ARM/uart-test/usbd_msc.d: -------------------------------------------------------------------------------- 1 | uart-test/usbd_msc.o: \ 2 | usr\STM32_USB_Device_Library\Class\MSC\Src\usbd_msc.c usr\per_conf.h \ 3 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdio.h \ 4 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\string.h \ 5 | D:\APP\Keil_v5\ARM\Pack\ARM\CMSIS\5.7.0\CMSIS\DSP\Include\arm_math.h \ 6 | ..\Drivers\CMSIS\Include\cmsis_compiler.h \ 7 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdint.h \ 8 | ..\Drivers\CMSIS\Include\cmsis_armclang.h \ 9 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\arm_compat.h \ 10 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\arm_acle.h \ 11 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\math.h \ 12 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\float.h \ 13 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\limits.h \ 14 | usr\malloc\malloc.h usr\sys.h \ 15 | ..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\stm32g4xx.h \ 16 | ..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\stm32g431xx.h \ 17 | ..\Drivers\CMSIS\Include\core_cm4.h \ 18 | ..\Drivers\CMSIS\Include\cmsis_version.h \ 19 | ..\Drivers\CMSIS\Include\cmsis_compiler.h \ 20 | ..\Drivers\CMSIS\Include\mpu_armv7.h \ 21 | ..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\system_stm32g4xx.h \ 22 | usr\sys.h usr\gpio.h usr\per_conf.h usr\usart.h usr\delay.h \ 23 | usr\timer.h usr\adc.h usr\dma.h usr\spi.h usr\spi_flash\w25qxx.h \ 24 | usr\fatfs\source\fatfs_app.h usr\fatfs\source\ff.h \ 25 | usr\fatfs\source\ffconf.h usr\fatfs\exfuns\exfuns.h \ 26 | usr\fatfs\source\ff.h usr\fatfs\exfuns\fattester.h usr\dac.h \ 27 | usr\opamp.h usr\lcd\lcd.h usr\lcd\st77xx_lcd_init.h usr\osc.h 28 | -------------------------------------------------------------------------------- /MDK-ARM/uart-test/usbd_msc_bot.d: -------------------------------------------------------------------------------- 1 | uart-test/usbd_msc_bot.o: \ 2 | usr\STM32_USB_Device_Library\Class\MSC\Src\usbd_msc_bot.c \ 3 | usr\per_conf.h d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdio.h \ 4 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\string.h \ 5 | D:\APP\Keil_v5\ARM\Pack\ARM\CMSIS\5.7.0\CMSIS\DSP\Include\arm_math.h \ 6 | ..\Drivers\CMSIS\Include\cmsis_compiler.h \ 7 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdint.h \ 8 | ..\Drivers\CMSIS\Include\cmsis_armclang.h \ 9 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\arm_compat.h \ 10 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\arm_acle.h \ 11 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\math.h \ 12 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\float.h \ 13 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\limits.h \ 14 | usr\malloc\malloc.h usr\sys.h \ 15 | ..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\stm32g4xx.h \ 16 | ..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\stm32g431xx.h \ 17 | ..\Drivers\CMSIS\Include\core_cm4.h \ 18 | ..\Drivers\CMSIS\Include\cmsis_version.h \ 19 | ..\Drivers\CMSIS\Include\cmsis_compiler.h \ 20 | ..\Drivers\CMSIS\Include\mpu_armv7.h \ 21 | ..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\system_stm32g4xx.h \ 22 | usr\sys.h usr\gpio.h usr\per_conf.h usr\usart.h usr\delay.h \ 23 | usr\timer.h usr\adc.h usr\dma.h usr\spi.h usr\spi_flash\w25qxx.h \ 24 | usr\fatfs\source\fatfs_app.h usr\fatfs\source\ff.h \ 25 | usr\fatfs\source\ffconf.h usr\fatfs\exfuns\exfuns.h \ 26 | usr\fatfs\source\ff.h usr\fatfs\exfuns\fattester.h usr\dac.h \ 27 | usr\opamp.h usr\lcd\lcd.h usr\lcd\st77xx_lcd_init.h usr\osc.h 28 | -------------------------------------------------------------------------------- /MDK-ARM/uart-test/usbd_msc_data.d: -------------------------------------------------------------------------------- 1 | uart-test/usbd_msc_data.o: \ 2 | usr\STM32_USB_Device_Library\Class\MSC\Src\usbd_msc_data.c \ 3 | usr\per_conf.h d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdio.h \ 4 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\string.h \ 5 | D:\APP\Keil_v5\ARM\Pack\ARM\CMSIS\5.7.0\CMSIS\DSP\Include\arm_math.h \ 6 | ..\Drivers\CMSIS\Include\cmsis_compiler.h \ 7 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdint.h \ 8 | ..\Drivers\CMSIS\Include\cmsis_armclang.h \ 9 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\arm_compat.h \ 10 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\arm_acle.h \ 11 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\math.h \ 12 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\float.h \ 13 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\limits.h \ 14 | usr\malloc\malloc.h usr\sys.h \ 15 | ..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\stm32g4xx.h \ 16 | ..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\stm32g431xx.h \ 17 | ..\Drivers\CMSIS\Include\core_cm4.h \ 18 | ..\Drivers\CMSIS\Include\cmsis_version.h \ 19 | ..\Drivers\CMSIS\Include\cmsis_compiler.h \ 20 | ..\Drivers\CMSIS\Include\mpu_armv7.h \ 21 | ..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\system_stm32g4xx.h \ 22 | usr\sys.h usr\gpio.h usr\per_conf.h usr\usart.h usr\delay.h \ 23 | usr\timer.h usr\adc.h usr\dma.h usr\spi.h usr\spi_flash\w25qxx.h \ 24 | usr\fatfs\source\fatfs_app.h usr\fatfs\source\ff.h \ 25 | usr\fatfs\source\ffconf.h usr\fatfs\exfuns\exfuns.h \ 26 | usr\fatfs\source\ff.h usr\fatfs\exfuns\fattester.h usr\dac.h \ 27 | usr\opamp.h usr\lcd\lcd.h usr\lcd\st77xx_lcd_init.h usr\osc.h 28 | -------------------------------------------------------------------------------- /MDK-ARM/uart-test/usbd_msc_scsi.d: -------------------------------------------------------------------------------- 1 | uart-test/usbd_msc_scsi.o: \ 2 | usr\STM32_USB_Device_Library\Class\MSC\Src\usbd_msc_scsi.c \ 3 | usr\per_conf.h d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdio.h \ 4 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\string.h \ 5 | D:\APP\Keil_v5\ARM\Pack\ARM\CMSIS\5.7.0\CMSIS\DSP\Include\arm_math.h \ 6 | ..\Drivers\CMSIS\Include\cmsis_compiler.h \ 7 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdint.h \ 8 | ..\Drivers\CMSIS\Include\cmsis_armclang.h \ 9 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\arm_compat.h \ 10 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\arm_acle.h \ 11 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\math.h \ 12 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\float.h \ 13 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\limits.h \ 14 | usr\malloc\malloc.h usr\sys.h \ 15 | ..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\stm32g4xx.h \ 16 | ..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\stm32g431xx.h \ 17 | ..\Drivers\CMSIS\Include\core_cm4.h \ 18 | ..\Drivers\CMSIS\Include\cmsis_version.h \ 19 | ..\Drivers\CMSIS\Include\cmsis_compiler.h \ 20 | ..\Drivers\CMSIS\Include\mpu_armv7.h \ 21 | ..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\system_stm32g4xx.h \ 22 | usr\sys.h usr\gpio.h usr\per_conf.h usr\usart.h usr\delay.h \ 23 | usr\timer.h usr\adc.h usr\dma.h usr\spi.h usr\spi_flash\w25qxx.h \ 24 | usr\fatfs\source\fatfs_app.h usr\fatfs\source\ff.h \ 25 | usr\fatfs\source\ffconf.h usr\fatfs\exfuns\exfuns.h \ 26 | usr\fatfs\source\ff.h usr\fatfs\exfuns\fattester.h usr\dac.h \ 27 | usr\opamp.h usr\lcd\lcd.h usr\lcd\st77xx_lcd_init.h usr\osc.h 28 | -------------------------------------------------------------------------------- /MDK-ARM/uart-test/usbd_mult.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G4_OSC/9778f077c6a447817cad48cecee05a23d305e67c/MDK-ARM/uart-test/usbd_mult.o -------------------------------------------------------------------------------- /MDK-ARM/uart-test/usbd_storage_if.d: -------------------------------------------------------------------------------- 1 | uart-test/usbd_storage_if.o: \ 2 | usr\STM32_USB_Device_Library\USB_Device\App\usbd_storage_if.c \ 3 | usr\STM32_USB_Device_Library\USB_Device\App\usbd_storage_if.h \ 4 | usr\per_conf.h d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdio.h \ 5 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\string.h \ 6 | D:\APP\Keil_v5\ARM\Pack\ARM\CMSIS\5.7.0\CMSIS\DSP\Include\arm_math.h \ 7 | ..\Drivers\CMSIS\Include\cmsis_compiler.h \ 8 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdint.h \ 9 | ..\Drivers\CMSIS\Include\cmsis_armclang.h \ 10 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\arm_compat.h \ 11 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\arm_acle.h \ 12 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\math.h \ 13 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\float.h \ 14 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\limits.h \ 15 | usr\malloc\malloc.h usr\sys.h \ 16 | ..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\stm32g4xx.h \ 17 | ..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\stm32g431xx.h \ 18 | ..\Drivers\CMSIS\Include\core_cm4.h \ 19 | ..\Drivers\CMSIS\Include\cmsis_version.h \ 20 | ..\Drivers\CMSIS\Include\cmsis_compiler.h \ 21 | ..\Drivers\CMSIS\Include\mpu_armv7.h \ 22 | ..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\system_stm32g4xx.h \ 23 | usr\sys.h usr\gpio.h usr\per_conf.h usr\usart.h usr\delay.h \ 24 | usr\timer.h usr\adc.h usr\dma.h usr\spi.h usr\spi_flash\w25qxx.h \ 25 | usr\fatfs\source\fatfs_app.h usr\fatfs\source\ff.h \ 26 | usr\fatfs\source\ffconf.h usr\fatfs\exfuns\exfuns.h \ 27 | usr\fatfs\source\ff.h usr\fatfs\exfuns\fattester.h usr\dac.h \ 28 | usr\opamp.h usr\lcd\lcd.h usr\lcd\st77xx_lcd_init.h usr\osc.h 29 | -------------------------------------------------------------------------------- /MDK-ARM/uart-test/usr_sd_app.d: -------------------------------------------------------------------------------- 1 | uart-test/usr_sd_app.o: usr\sdmmc\usr_sd_app.c usr\sdmmc\usr_sd_app.h \ 2 | usr\per_conf.h d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdio.h \ 3 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\string.h \ 4 | D:\APP\Keil_v5\ARM\Pack\ARM\CMSIS\5.7.0\CMSIS\DSP\Include\arm_math.h \ 5 | ..\Drivers\CMSIS\Include\cmsis_compiler.h \ 6 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdint.h \ 7 | ..\Drivers\CMSIS\Include\cmsis_armclang.h \ 8 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\arm_compat.h \ 9 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\arm_acle.h \ 10 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\math.h \ 11 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\float.h \ 12 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\limits.h \ 13 | usr\malloc\malloc.h usr\sys.h \ 14 | ..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\stm32g4xx.h \ 15 | ..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\stm32g431xx.h \ 16 | ..\Drivers\CMSIS\Include\core_cm4.h \ 17 | ..\Drivers\CMSIS\Include\cmsis_version.h \ 18 | ..\Drivers\CMSIS\Include\cmsis_compiler.h \ 19 | ..\Drivers\CMSIS\Include\mpu_armv7.h \ 20 | ..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\system_stm32g4xx.h \ 21 | usr\sys.h usr\gpio.h usr\per_conf.h usr\usart.h usr\delay.h \ 22 | usr\timer.h usr\adc.h usr\dma.h usr\spi.h usr\spi_flash\w25qxx.h \ 23 | usr\fatfs\source\fatfs_app.h usr\fatfs\source\ff.h \ 24 | usr\fatfs\source\ffconf.h usr\fatfs\exfuns\exfuns.h \ 25 | usr\fatfs\source\ff.h usr\fatfs\exfuns\fattester.h usr\dac.h \ 26 | usr\opamp.h usr\lcd\lcd.h usr\lcd\st77xx_lcd_init.h usr\osc.h \ 27 | usr\sdmmc\sdmmc.h 28 | -------------------------------------------------------------------------------- /MDK-ARM/uart-test/usr_sd_app.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G4_OSC/9778f077c6a447817cad48cecee05a23d305e67c/MDK-ARM/uart-test/usr_sd_app.o -------------------------------------------------------------------------------- /MDK-ARM/uart-test/w25qxx.d: -------------------------------------------------------------------------------- 1 | uart-test/w25qxx.o: usr\spi_flash\w25qxx.c usr\spi_flash\w25qxx.h \ 2 | usr\per_conf.h d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdio.h \ 3 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\string.h \ 4 | D:\APP\Keil_v5\ARM\Pack\ARM\CMSIS\5.7.0\CMSIS\DSP\Include\arm_math.h \ 5 | ..\Drivers\CMSIS\Include\cmsis_compiler.h \ 6 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdint.h \ 7 | ..\Drivers\CMSIS\Include\cmsis_armclang.h \ 8 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\arm_compat.h \ 9 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\arm_acle.h \ 10 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\math.h \ 11 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\float.h \ 12 | d:\APP\Keil_v5\ARM\ARMCLANG\Bin\..\include\limits.h \ 13 | usr\malloc\malloc.h usr\sys.h \ 14 | ..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\stm32g4xx.h \ 15 | ..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\stm32g431xx.h \ 16 | ..\Drivers\CMSIS\Include\core_cm4.h \ 17 | ..\Drivers\CMSIS\Include\cmsis_version.h \ 18 | ..\Drivers\CMSIS\Include\cmsis_compiler.h \ 19 | ..\Drivers\CMSIS\Include\mpu_armv7.h \ 20 | ..\Drivers\CMSIS\Device\ST\STM32G4xx\Include\system_stm32g4xx.h \ 21 | usr\sys.h usr\gpio.h usr\per_conf.h usr\usart.h usr\delay.h \ 22 | usr\timer.h usr\adc.h usr\dma.h usr\spi.h usr\spi_flash\w25qxx.h \ 23 | usr\fatfs\source\fatfs_app.h usr\fatfs\source\ff.h \ 24 | usr\fatfs\source\ffconf.h usr\fatfs\exfuns\exfuns.h \ 25 | usr\fatfs\source\ff.h usr\fatfs\exfuns\fattester.h usr\dac.h \ 26 | usr\opamp.h usr\lcd\lcd.h usr\lcd\st77xx_lcd_init.h usr\osc.h \ 27 | usr\spi.h usr\delay.h usr\usart.h 28 | -------------------------------------------------------------------------------- /MDK-ARM/uart-test/w25qxx.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G4_OSC/9778f077c6a447817cad48cecee05a23d305e67c/MDK-ARM/uart-test/w25qxx.o -------------------------------------------------------------------------------- /MDK-ARM/usr/STM32_USB_Device_Library/Class/Mult/usbd_mult.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G4_OSC/9778f077c6a447817cad48cecee05a23d305e67c/MDK-ARM/usr/STM32_USB_Device_Library/Class/Mult/usbd_mult.c -------------------------------------------------------------------------------- /MDK-ARM/usr/STM32_USB_Device_Library/Class/Mult/usbd_mult.h: -------------------------------------------------------------------------------- 1 | /* 2 | * @Description: 3 | * @FilePath: \MDK-ARM\usr\STM32_USB_Device_Library\Class\Mult\usbd_mult.h 4 | * @Version: 2.0 5 | * @Autor: Eltecz 6 | * @Date: 2022-09-23 10:31:04 7 | * @LastEditors: Eltecz 8 | * @LastEditTime: 2022-09-23 10:40:31 9 | */ 10 | #ifndef __USBD_MULT_H__ 11 | #define __USBD_MULT_H__ 12 | 13 | #include "usb_top.h" 14 | 15 | extern USBD_ClassTypeDef USBD_Mult; 16 | #define USBD_Mult_CLASS &USBD_Mult 17 | 18 | #endif -------------------------------------------------------------------------------- /MDK-ARM/usr/STM32_USB_Device_Library/USB_Device/App/usbd_cdc_if.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G4_OSC/9778f077c6a447817cad48cecee05a23d305e67c/MDK-ARM/usr/STM32_USB_Device_Library/USB_Device/App/usbd_cdc_if.c -------------------------------------------------------------------------------- /MDK-ARM/usr/STM32_USB_Device_Library/USB_Device/App/usbd_cdc_if.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G4_OSC/9778f077c6a447817cad48cecee05a23d305e67c/MDK-ARM/usr/STM32_USB_Device_Library/USB_Device/App/usbd_cdc_if.h -------------------------------------------------------------------------------- /MDK-ARM/usr/STM32_USB_Device_Library/USB_Device/App/usbd_storage_if.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G4_OSC/9778f077c6a447817cad48cecee05a23d305e67c/MDK-ARM/usr/STM32_USB_Device_Library/USB_Device/App/usbd_storage_if.c -------------------------------------------------------------------------------- /MDK-ARM/usr/STM32_USB_Device_Library/USB_Device/Target/usbd_conf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G4_OSC/9778f077c6a447817cad48cecee05a23d305e67c/MDK-ARM/usr/STM32_USB_Device_Library/USB_Device/Target/usbd_conf.c -------------------------------------------------------------------------------- /MDK-ARM/usr/STM32_USB_Device_Library/USB_Device/Target/usbd_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G4_OSC/9778f077c6a447817cad48cecee05a23d305e67c/MDK-ARM/usr/STM32_USB_Device_Library/USB_Device/Target/usbd_conf.h -------------------------------------------------------------------------------- /MDK-ARM/usr/adc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G4_OSC/9778f077c6a447817cad48cecee05a23d305e67c/MDK-ARM/usr/adc.c -------------------------------------------------------------------------------- /MDK-ARM/usr/adc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G4_OSC/9778f077c6a447817cad48cecee05a23d305e67c/MDK-ARM/usr/adc.h -------------------------------------------------------------------------------- /MDK-ARM/usr/dac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G4_OSC/9778f077c6a447817cad48cecee05a23d305e67c/MDK-ARM/usr/dac.c -------------------------------------------------------------------------------- /MDK-ARM/usr/dac.h: -------------------------------------------------------------------------------- 1 | /* 2 | * @Description: 3 | * @FilePath: \MDK-ARM\usr\dac.h 4 | * @Version: 2.0 5 | * @Autor: Eltecz 6 | * @Date: 2022-09-07 11:03:42 7 | * @LastEditors: Eltecz 8 | * @LastEditTime: 2022-09-10 10:15:43 9 | */ 10 | #ifndef __DAC_H 11 | #define __DAC_H 12 | #include "per_conf.h" 13 | //#define en_dac_cal 14 | 15 | typedef struct 16 | { 17 | u8 tdiv; 18 | u8 dlength; 19 | u16 vpp; 20 | u8 vpp_lut; 21 | u16 vdc; 22 | u8 vdc_lut; 23 | u8 wave_type; 24 | u32 *dac_buf_p; 25 | }dac_chnnal_config; 26 | 27 | enum{ 28 | WAVE_OFF, 29 | WAVE_SINE, 30 | WAVE_SQR, 31 | WAVE_TRI, 32 | WAVE_PULSE, 33 | WAVE_SAW, 34 | WAVE_DC, 35 | }; 36 | 37 | 38 | extern dac_chnnal_config dac_ch1; 39 | 40 | extern u16 dac_point_lut[9]; 41 | extern u16 dac_v_lut[11]; 42 | 43 | void dac_init(); 44 | void dac_data_pre(u8 ch,u16 dlength); 45 | #endif 46 | -------------------------------------------------------------------------------- /MDK-ARM/usr/delay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G4_OSC/9778f077c6a447817cad48cecee05a23d305e67c/MDK-ARM/usr/delay.c -------------------------------------------------------------------------------- /MDK-ARM/usr/delay.h: -------------------------------------------------------------------------------- 1 | /* 2 | * @Description: 3 | * @FilePath: \MDK-ARM\usr\delay.h 4 | * @Version: 2.0 5 | * @Autor: Eltecz 6 | * @Date: 2022-08-22 11:40:42 7 | * @LastEditors: Eltecz 8 | * @LastEditTime: 2022-09-05 23:55:38 9 | */ 10 | #ifndef __DELAY_H 11 | #define __DELAY_H 12 | #include "per_conf.h" 13 | 14 | void delay_init(u16 SYSCLK); 15 | void delay_ms(u16 nms); 16 | void delay_us(u32 nus); 17 | 18 | #endif 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | -------------------------------------------------------------------------------- /MDK-ARM/usr/dma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G4_OSC/9778f077c6a447817cad48cecee05a23d305e67c/MDK-ARM/usr/dma.c -------------------------------------------------------------------------------- /MDK-ARM/usr/dma.h: -------------------------------------------------------------------------------- 1 | /* 2 | * @Description: 3 | * @FilePath: \MDK-ARM\usr\dma.h 4 | * @Version: 2.0 5 | * @Autor: Eltecz 6 | * @Date: 2022-05-22 11:28:12 7 | * @LastEditors: Eltecz 8 | * @LastEditTime: 2022-10-27 10:09:37 9 | */ 10 | #ifndef __dma_h__ 11 | #define __dma_h__ 12 | 13 | #include "per_conf.h" 14 | 15 | extern vu16 fill_color_buf; 16 | 17 | void SPI1_LCD_DMA_INIT(); 18 | void SPI1_DMA_START(u32 ndtr,u32 buftr,u8 mode); 19 | 20 | void ADC1_DMA_CHNNAL_INIT(); 21 | void ADC1_DMA_START(u32 ndtr); 22 | 23 | void ADC_DMA_CHNNAL_INIT(); 24 | void Dual_ADC_DMA_START(u32 ndtr); 25 | void Dual_ADC_DMA_END(); 26 | 27 | void DAC3CH1_DMA_INIT(); 28 | void DAC3CH1_DMA_START(u32 ndtr); 29 | 30 | void DAC3C1_DMA_OFF(); 31 | 32 | void SPI3RX_DMA_INIT(); 33 | void SPI3RX_DMA_START(u32 ndtr,u32 buftr); 34 | void SPI3RX_DMA_END(); 35 | #endif -------------------------------------------------------------------------------- /MDK-ARM/usr/fatfs/documents/res/app1.c: -------------------------------------------------------------------------------- 1 | /*------------------------------------------------------------/ 2 | / Open or create a file in append mode 3 | / (This function was sperseded by FA_OPEN_APPEND flag at FatFs R0.12a) 4 | /------------------------------------------------------------*/ 5 | 6 | FRESULT open_append ( 7 | FIL* fp, /* [OUT] File object to create */ 8 | const char* path /* [IN] File name to be opened */ 9 | ) 10 | { 11 | FRESULT fr; 12 | 13 | /* Opens an existing file. If not exist, creates a new file. */ 14 | fr = f_open(fp, path, FA_WRITE | FA_OPEN_ALWAYS); 15 | if (fr == FR_OK) { 16 | /* Seek to end of the file to append data */ 17 | fr = f_lseek(fp, f_size(fp)); 18 | if (fr != FR_OK) 19 | f_close(fp); 20 | } 21 | return fr; 22 | } 23 | 24 | 25 | int main (void) 26 | { 27 | FRESULT fr; 28 | FATFS fs; 29 | FIL fil; 30 | 31 | /* Open or create a log file and ready to append */ 32 | f_mount(&fs, "", 0); 33 | fr = open_append(&fil, "logfile.txt"); 34 | if (fr != FR_OK) return 1; 35 | 36 | /* Append a line */ 37 | f_printf(&fil, "%02u/%02u/%u, %2u:%02u\n", Mday, Mon, Year, Hour, Min); 38 | 39 | /* Close the file */ 40 | f_close(&fil); 41 | 42 | return 0; 43 | } 44 | 45 | -------------------------------------------------------------------------------- /MDK-ARM/usr/fatfs/documents/res/app5.c: -------------------------------------------------------------------------------- 1 | /*----------------------------------------------------------------------/ 2 | / Test if the file is contiguous / 3 | /----------------------------------------------------------------------*/ 4 | 5 | FRESULT test_contiguous_file ( 6 | FIL* fp, /* [IN] Open file object to be checked */ 7 | int* cont /* [OUT] 1:Contiguous, 0:Fragmented or zero-length */ 8 | ) 9 | { 10 | DWORD clst, clsz, step; 11 | FSIZE_t fsz; 12 | FRESULT fr; 13 | 14 | 15 | *cont = 0; 16 | fr = f_lseek(fp, 0); /* Validates and prepares the file */ 17 | if (fr != FR_OK) return fr; 18 | 19 | #if FF_MAX_SS == FF_MIN_SS 20 | clsz = (DWORD)fp->obj.fs->csize * FF_MAX_SS; /* Cluster size */ 21 | #else 22 | clsz = (DWORD)fp->obj.fs->csize * fp->obj.fs->ssize; 23 | #endif 24 | fsz = fp->obj.objsize; 25 | if (fsz > 0) { 26 | clst = fp->obj.sclust - 1; /* A cluster leading the first cluster for first test */ 27 | while (fsz) { 28 | step = (fsz >= clsz) ? clsz : (DWORD)fsz; 29 | fr = f_lseek(fp, f_tell(fp) + step); /* Advances file pointer a cluster */ 30 | if (fr != FR_OK) return fr; 31 | if (clst + 1 != fp->clust) break; /* Is not the cluster next to previous one? */ 32 | clst = fp->clust; fsz -= step; /* Get current cluster for next test */ 33 | } 34 | if (fsz == 0) *cont = 1; /* All done without fail? */ 35 | } 36 | 37 | return FR_OK; 38 | } 39 | -------------------------------------------------------------------------------- /MDK-ARM/usr/fatfs/documents/res/f1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G4_OSC/9778f077c6a447817cad48cecee05a23d305e67c/MDK-ARM/usr/fatfs/documents/res/f1.png -------------------------------------------------------------------------------- /MDK-ARM/usr/fatfs/documents/res/f2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G4_OSC/9778f077c6a447817cad48cecee05a23d305e67c/MDK-ARM/usr/fatfs/documents/res/f2.png -------------------------------------------------------------------------------- /MDK-ARM/usr/fatfs/documents/res/f3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G4_OSC/9778f077c6a447817cad48cecee05a23d305e67c/MDK-ARM/usr/fatfs/documents/res/f3.png -------------------------------------------------------------------------------- /MDK-ARM/usr/fatfs/documents/res/f4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G4_OSC/9778f077c6a447817cad48cecee05a23d305e67c/MDK-ARM/usr/fatfs/documents/res/f4.png -------------------------------------------------------------------------------- /MDK-ARM/usr/fatfs/documents/res/f5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G4_OSC/9778f077c6a447817cad48cecee05a23d305e67c/MDK-ARM/usr/fatfs/documents/res/f5.png -------------------------------------------------------------------------------- /MDK-ARM/usr/fatfs/documents/res/f6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G4_OSC/9778f077c6a447817cad48cecee05a23d305e67c/MDK-ARM/usr/fatfs/documents/res/f6.png -------------------------------------------------------------------------------- /MDK-ARM/usr/fatfs/documents/res/f7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G4_OSC/9778f077c6a447817cad48cecee05a23d305e67c/MDK-ARM/usr/fatfs/documents/res/f7.png -------------------------------------------------------------------------------- /MDK-ARM/usr/fatfs/documents/res/funcs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G4_OSC/9778f077c6a447817cad48cecee05a23d305e67c/MDK-ARM/usr/fatfs/documents/res/funcs.png -------------------------------------------------------------------------------- /MDK-ARM/usr/fatfs/documents/res/layers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G4_OSC/9778f077c6a447817cad48cecee05a23d305e67c/MDK-ARM/usr/fatfs/documents/res/layers.png -------------------------------------------------------------------------------- /MDK-ARM/usr/fatfs/documents/res/layers1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G4_OSC/9778f077c6a447817cad48cecee05a23d305e67c/MDK-ARM/usr/fatfs/documents/res/layers1.png -------------------------------------------------------------------------------- /MDK-ARM/usr/fatfs/documents/res/layers2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G4_OSC/9778f077c6a447817cad48cecee05a23d305e67c/MDK-ARM/usr/fatfs/documents/res/layers2.png -------------------------------------------------------------------------------- /MDK-ARM/usr/fatfs/documents/res/layers3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G4_OSC/9778f077c6a447817cad48cecee05a23d305e67c/MDK-ARM/usr/fatfs/documents/res/layers3.png -------------------------------------------------------------------------------- /MDK-ARM/usr/fatfs/documents/res/mkfatimg.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G4_OSC/9778f077c6a447817cad48cecee05a23d305e67c/MDK-ARM/usr/fatfs/documents/res/mkfatimg.zip -------------------------------------------------------------------------------- /MDK-ARM/usr/fatfs/documents/res/mkfs.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G4_OSC/9778f077c6a447817cad48cecee05a23d305e67c/MDK-ARM/usr/fatfs/documents/res/mkfs.xls -------------------------------------------------------------------------------- /MDK-ARM/usr/fatfs/documents/res/modules.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G4_OSC/9778f077c6a447817cad48cecee05a23d305e67c/MDK-ARM/usr/fatfs/documents/res/modules.png -------------------------------------------------------------------------------- /MDK-ARM/usr/fatfs/documents/res/rwtest1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G4_OSC/9778f077c6a447817cad48cecee05a23d305e67c/MDK-ARM/usr/fatfs/documents/res/rwtest1.png -------------------------------------------------------------------------------- /MDK-ARM/usr/fatfs/documents/res/rwtest2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G4_OSC/9778f077c6a447817cad48cecee05a23d305e67c/MDK-ARM/usr/fatfs/documents/res/rwtest2.png -------------------------------------------------------------------------------- /MDK-ARM/usr/fatfs/documents/res/rwtest3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G4_OSC/9778f077c6a447817cad48cecee05a23d305e67c/MDK-ARM/usr/fatfs/documents/res/rwtest3.png -------------------------------------------------------------------------------- /MDK-ARM/usr/fatfs/exfuns/exfuns.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G4_OSC/9778f077c6a447817cad48cecee05a23d305e67c/MDK-ARM/usr/fatfs/exfuns/exfuns.c -------------------------------------------------------------------------------- /MDK-ARM/usr/fatfs/exfuns/exfuns.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G4_OSC/9778f077c6a447817cad48cecee05a23d305e67c/MDK-ARM/usr/fatfs/exfuns/exfuns.h -------------------------------------------------------------------------------- /MDK-ARM/usr/fatfs/exfuns/fattester.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G4_OSC/9778f077c6a447817cad48cecee05a23d305e67c/MDK-ARM/usr/fatfs/exfuns/fattester.c -------------------------------------------------------------------------------- /MDK-ARM/usr/fatfs/exfuns/fattester.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G4_OSC/9778f077c6a447817cad48cecee05a23d305e67c/MDK-ARM/usr/fatfs/exfuns/fattester.h -------------------------------------------------------------------------------- /MDK-ARM/usr/fatfs/source/00readme.txt: -------------------------------------------------------------------------------- 1 | FatFs Module Source Files R0.13c 2 | 3 | 4 | FILES 5 | 6 | 00readme.txt This file. 7 | 00history.txt Revision history. 8 | ff.c FatFs module. 9 | ffconf.h Configuration file of FatFs module. 10 | ff.h Common include file for FatFs and application module. 11 | diskio.h Common include file for FatFs and disk I/O module. 12 | diskio.c An example of glue function to attach existing disk I/O module to FatFs. 13 | ffunicode.c Optional Unicode utility functions. 14 | ffsystem.c An example of optional O/S related functions. 15 | 16 | 17 | Low level disk I/O module is not included in this archive because the FatFs 18 | module is only a generic file system layer and it does not depend on any specific 19 | storage device. You need to provide a low level disk I/O module written to 20 | control the storage device that attached to the target system. 21 | 22 | -------------------------------------------------------------------------------- /MDK-ARM/usr/fatfs/source/bmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G4_OSC/9778f077c6a447817cad48cecee05a23d305e67c/MDK-ARM/usr/fatfs/source/bmp.h -------------------------------------------------------------------------------- /MDK-ARM/usr/fatfs/source/diskio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G4_OSC/9778f077c6a447817cad48cecee05a23d305e67c/MDK-ARM/usr/fatfs/source/diskio.c -------------------------------------------------------------------------------- /MDK-ARM/usr/fatfs/source/fatfs_app.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G4_OSC/9778f077c6a447817cad48cecee05a23d305e67c/MDK-ARM/usr/fatfs/source/fatfs_app.c -------------------------------------------------------------------------------- /MDK-ARM/usr/fatfs/source/fatfs_app.h: -------------------------------------------------------------------------------- 1 | /* 2 | * @Description: 3 | * @FilePath: \MDK-ARM\usr\fatfs\source\fatfs_app.h 4 | * @Version: 2.0 5 | * @Autor: Eltecz 6 | * @Date: 2022-09-23 15:14:14 7 | * @LastEditors: Eltecz 8 | * @LastEditTime: 2022-10-27 00:16:12 9 | */ 10 | #ifndef __FATFS_APP_H__ 11 | #define __FATFS_APP_H__ 12 | 13 | #include "per_conf.h" 14 | #include "ff.h" 15 | #include "exfuns.h" 16 | #include "fattester.h" 17 | 18 | void fatfs_test(); 19 | void usb_disk_init(); 20 | void usb_disk_dir_list(); 21 | void fatfs_show_bmp(u8 delays,u8 modes); 22 | u8 stdbmp_decode(const u8 *filename); 23 | #endif -------------------------------------------------------------------------------- /MDK-ARM/usr/fatfs/source/ffconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G4_OSC/9778f077c6a447817cad48cecee05a23d305e67c/MDK-ARM/usr/fatfs/source/ffconf.h -------------------------------------------------------------------------------- /MDK-ARM/usr/fatfs/source/ffsystem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G4_OSC/9778f077c6a447817cad48cecee05a23d305e67c/MDK-ARM/usr/fatfs/source/ffsystem.c -------------------------------------------------------------------------------- /MDK-ARM/usr/fft.c: -------------------------------------------------------------------------------- 1 | /* 2 | * @Description: 3 | * @FilePath: \MDK-ARM\usr\fft.c 4 | * @Version: 2.0 5 | * @Autor: Eltecz 6 | * @Date: 2022-09-10 10:24:59 7 | * @LastEditors: Eltecz 8 | * @LastEditTime: 2022-09-10 10:25:08 9 | */ 10 | #include "fft.h" -------------------------------------------------------------------------------- /MDK-ARM/usr/fft.h: -------------------------------------------------------------------------------- 1 | /* 2 | * @Description: 3 | * @FilePath: \MDK-ARM\usr\fft.h 4 | * @Version: 2.0 5 | * @Autor: Eltecz 6 | * @Date: 2022-09-10 10:25:11 7 | * @LastEditors: Eltecz 8 | * @LastEditTime: 2022-09-10 10:25:40 9 | */ 10 | #ifndef __FFT_H 11 | #define __FFT_H 12 | #include "per_conf.h" 13 | 14 | #endif -------------------------------------------------------------------------------- /MDK-ARM/usr/gpio.c: -------------------------------------------------------------------------------- 1 | /* 2 | * @Description: 3 | * @FilePath: \MDK-ARM\usr\gpio.c 4 | * @Version: 2.0 5 | * @Autor: Eltecz 6 | * @Date: 2022-08-22 11:40:42 7 | * @LastEditors: Eltecz 8 | * @LastEditTime: 2022-10-27 09:44:21 9 | */ 10 | #include "per_conf.h" 11 | void gpio_init(){ 12 | RCC->AHB2ENR|=3; 13 | GPIO_Set(GPIOA,PIN8,GPIO_MODE_OUT,GPIO_OTYPE_PP,GPIO_SPEED_FAST,GPIO_PUPD_PU); 14 | GPIO_Set(GPIOB,PIN0|PIN8,GPIO_MODE_IN,0,0,GPIO_PUPD_PD); 15 | GPIO_Set(GPIOA,PIN3,GPIO_MODE_IN,0,0,GPIO_PUPD_PD); 16 | } 17 | 18 | u8 getkey(){ 19 | if (KR()) return 1; 20 | if (KL()) return 3; 21 | if (KM()) return 2; 22 | return 0; 23 | } 24 | -------------------------------------------------------------------------------- /MDK-ARM/usr/gpio.h: -------------------------------------------------------------------------------- 1 | /* 2 | * @Description: 3 | * @FilePath: \MDK-ARM\usr\gpio.h 4 | * @Version: 2.0 5 | * @Autor: Eltecz 6 | * @Date: 2022-08-22 11:40:42 7 | * @LastEditors: Eltecz 8 | * @LastEditTime: 2022-10-27 00:06:17 9 | */ 10 | 11 | #ifndef __gpio_h__ 12 | #define __gpio_h__ 13 | #include "per_conf.h" 14 | void gpio_init(); 15 | u8 getkey(); 16 | #define LED0(X) (GPIOA->BSRR|=(1<<((X?8:24)))) 17 | #define KM() ((GPIOB->IDR)&((1<<8))) 18 | #define KR() ((GPIOA->IDR)&((1<<3))) 19 | #define KL() ((GPIOB->IDR)&((1<<0))) 20 | 21 | enum{ 22 | KL=1,KM,KR 23 | }; 24 | 25 | #endif -------------------------------------------------------------------------------- /MDK-ARM/usr/lcd/hx8357_lcd_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G4_OSC/9778f077c6a447817cad48cecee05a23d305e67c/MDK-ARM/usr/lcd/hx8357_lcd_init.c -------------------------------------------------------------------------------- /MDK-ARM/usr/lcd/hx8357_lcd_init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G4_OSC/9778f077c6a447817cad48cecee05a23d305e67c/MDK-ARM/usr/lcd/hx8357_lcd_init.h -------------------------------------------------------------------------------- /MDK-ARM/usr/lcd/lcd_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G4_OSC/9778f077c6a447817cad48cecee05a23d305e67c/MDK-ARM/usr/lcd/lcd_init.c -------------------------------------------------------------------------------- /MDK-ARM/usr/lcd/lcd_init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G4_OSC/9778f077c6a447817cad48cecee05a23d305e67c/MDK-ARM/usr/lcd/lcd_init.h -------------------------------------------------------------------------------- /MDK-ARM/usr/lcd/st77xx_lcd_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G4_OSC/9778f077c6a447817cad48cecee05a23d305e67c/MDK-ARM/usr/lcd/st77xx_lcd_init.c -------------------------------------------------------------------------------- /MDK-ARM/usr/lcd/st77xx_lcd_init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G4_OSC/9778f077c6a447817cad48cecee05a23d305e67c/MDK-ARM/usr/lcd/st77xx_lcd_init.h -------------------------------------------------------------------------------- /MDK-ARM/usr/malloc/malloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G4_OSC/9778f077c6a447817cad48cecee05a23d305e67c/MDK-ARM/usr/malloc/malloc.c -------------------------------------------------------------------------------- /MDK-ARM/usr/malloc/malloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G4_OSC/9778f077c6a447817cad48cecee05a23d305e67c/MDK-ARM/usr/malloc/malloc.h -------------------------------------------------------------------------------- /MDK-ARM/usr/opamp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G4_OSC/9778f077c6a447817cad48cecee05a23d305e67c/MDK-ARM/usr/opamp.c -------------------------------------------------------------------------------- /MDK-ARM/usr/opamp.h: -------------------------------------------------------------------------------- 1 | /* 2 | * @Description: 3 | * @FilePath: \MDK-ARM\usr\opamp.h 4 | * @Version: 2.0 5 | * @Autor: Eltecz 6 | * @Date: 2022-09-07 11:11:19 7 | * @LastEditors: Eltecz 8 | * @LastEditTime: 2022-09-10 10:01:58 9 | */ 10 | #ifndef __OPAMP_H 11 | #define __OPAMP_H 12 | #include "per_conf.h" 13 | 14 | void dac_opamp_init(); 15 | #endif -------------------------------------------------------------------------------- /MDK-ARM/usr/per_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G4_OSC/9778f077c6a447817cad48cecee05a23d305e67c/MDK-ARM/usr/per_conf.h -------------------------------------------------------------------------------- /MDK-ARM/usr/sdmmc/usr_sd_app.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G4_OSC/9778f077c6a447817cad48cecee05a23d305e67c/MDK-ARM/usr/sdmmc/usr_sd_app.c -------------------------------------------------------------------------------- /MDK-ARM/usr/sdmmc/usr_sd_app.h: -------------------------------------------------------------------------------- 1 | /* 2 | * @Description: 3 | * @FilePath: \MDK-ARM\usr\sdmmc\usr_sd_app.h 4 | * @Version: 2.0 5 | * @Autor: Eltecz 6 | * @Date: 2022-09-20 16:25:12 7 | * @LastEditors: Eltecz 8 | * @LastEditTime: 2022-09-21 17:36:43 9 | */ 10 | #ifndef __USR_SD_APP_H__ 11 | #define __USR_SD_APP_H__ 12 | #include "per_conf.h" 13 | #include "sdmmc.h" 14 | #include "ff.h" 15 | #include "exfuns.h" 16 | 17 | void sd_init(); 18 | 19 | #endif -------------------------------------------------------------------------------- /MDK-ARM/usr/spi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G4_OSC/9778f077c6a447817cad48cecee05a23d305e67c/MDK-ARM/usr/spi.c -------------------------------------------------------------------------------- /MDK-ARM/usr/spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G4_OSC/9778f077c6a447817cad48cecee05a23d305e67c/MDK-ARM/usr/spi.h -------------------------------------------------------------------------------- /MDK-ARM/usr/spi_flash/w25qxx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G4_OSC/9778f077c6a447817cad48cecee05a23d305e67c/MDK-ARM/usr/spi_flash/w25qxx.c -------------------------------------------------------------------------------- /MDK-ARM/usr/spi_flash/w25qxx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G4_OSC/9778f077c6a447817cad48cecee05a23d305e67c/MDK-ARM/usr/spi_flash/w25qxx.h -------------------------------------------------------------------------------- /MDK-ARM/usr/sys.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G4_OSC/9778f077c6a447817cad48cecee05a23d305e67c/MDK-ARM/usr/sys.c -------------------------------------------------------------------------------- /MDK-ARM/usr/sys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G4_OSC/9778f077c6a447817cad48cecee05a23d305e67c/MDK-ARM/usr/sys.h -------------------------------------------------------------------------------- /MDK-ARM/usr/timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G4_OSC/9778f077c6a447817cad48cecee05a23d305e67c/MDK-ARM/usr/timer.c -------------------------------------------------------------------------------- /MDK-ARM/usr/timer.h: -------------------------------------------------------------------------------- 1 | /* 2 | * @Description: 3 | * @FilePath: \MDK-ARM\usr\timer.h 4 | * @Version: 2.0 5 | * @Autor: Eltecz 6 | * @Date: 2022-09-03 20:29:41 7 | * @LastEditors: Eltecz 8 | * @LastEditTime: 2022-09-09 23:22:28 9 | */ 10 | #ifndef __TIMER_H 11 | #define __TIMER_H 12 | #include "sys.h" 13 | 14 | void TIM3_Int_Init(u16 arr,u16 psc); 15 | void TIM4_Int_Init(u16 arr,u16 psc); 16 | void ADC_TIM_init(u8 tims); 17 | 18 | extern u16 adc_delay[][2]; 19 | extern u16 pwm_lut[][2]; 20 | extern u16 dac_trig_lut[][2]; 21 | 22 | #define timer_length 16 23 | #define Encoder_init() TIM4_Int_Init(256,100) 24 | #define Encoder_reset() ((TIM4->CNT)=128) 25 | #define Encoder_get() ((TIM4->CNT)-128) 26 | 27 | void PWM_TIM_INIT(u8 t1,u8 t2,u8 d1,u8 d2); 28 | 29 | void dac_timer_init(u8 t1,u8 t2); 30 | #endif 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | -------------------------------------------------------------------------------- /MDK-ARM/usr/usart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G4_OSC/9778f077c6a447817cad48cecee05a23d305e67c/MDK-ARM/usr/usart.c -------------------------------------------------------------------------------- /MDK-ARM/usr/usart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G4_OSC/9778f077c6a447817cad48cecee05a23d305e67c/MDK-ARM/usr/usart.h -------------------------------------------------------------------------------- /MDK-ARM/usr/usb_top.c: -------------------------------------------------------------------------------- 1 | /* 2 | * @Description: 3 | * @FilePath: \MDK-ARM\usr\usb_top.c 4 | * @Version: 2.0 5 | * @Autor: Eltecz 6 | * @Date: 2022-09-11 10:57:24 7 | * @LastEditors: Eltecz 8 | * @LastEditTime: 2022-09-24 17:10:03 9 | */ 10 | #include "usb_top.h" 11 | 12 | USBD_HandleTypeDef USBD_Device; 13 | 14 | u8 usb_connent_cdc(){ 15 | USBD_Init(&USBD_Device,&CDC_Desc,0); 16 | USBD_RegisterClass(&USBD_Device,USBD_CDC_CLASS); 17 | USBD_CDC_RegisterInterface(&USBD_Device,&USBD_CDC_fops); 18 | USBD_Start(&USBD_Device); 19 | return bDeviceState; 20 | } 21 | u8 usb_Msc_connent(){ 22 | USBD_Init(&USBD_Device,&MSC_Desc,0); 23 | USBD_RegisterClass(&USBD_Device,USBD_MSC_CLASS); 24 | USBD_MSC_RegisterStorage(&USBD_Device,&USBD_DISK_fops); 25 | USBD_Start(&USBD_Device); 26 | return bDeviceState; 27 | } 28 | u8 usb_connent(){ 29 | USBD_Init(&USBD_Device,&Mult_Desc,0); 30 | USBD_RegisterClass(&USBD_Device,USBD_Mult_CLASS); 31 | // USBD_MSC_RegisterStorage(&USBD_Device,&USBD_DISK_fops); 32 | USBD_Start(&USBD_Device); 33 | return bDeviceState; 34 | } 35 | void usb_disconnent(){ 36 | USBD_Stop(&USBD_Device); 37 | } -------------------------------------------------------------------------------- /MDK-ARM/usr/usb_top.h: -------------------------------------------------------------------------------- 1 | /* 2 | * @Description: 3 | * @FilePath: \MDK-ARM\usr\usb_top.h 4 | * @Version: 2.0 5 | * @Autor: Eltecz 6 | * @Date: 2022-09-11 10:55:30 7 | * @LastEditors: Eltecz 8 | * @LastEditTime: 2022-09-22 16:37:26 9 | */ 10 | #ifndef __USB_TOP_H 11 | #define __USB_TOP_H 12 | 13 | #include "per_conf.h" 14 | 15 | 16 | typedef struct _USBD_CDC_Itf 17 | { 18 | int8_t (* Init)(void); 19 | int8_t (* DeInit)(void); 20 | int8_t (* Control)(uint8_t cmd, uint8_t *pbuf, uint16_t length); 21 | int8_t (* Receive)(uint8_t *Buf, uint32_t *Len); 22 | int8_t (* TransmitCplt)(uint8_t *Buf, uint32_t *Len, uint8_t epnum); 23 | } USBD_CDC_ItfTypeDef; 24 | 25 | typedef struct _USBD_STORAGE 26 | { 27 | int8_t (* Init)(uint8_t lun); 28 | int8_t (* GetCapacity)(uint8_t lun, uint32_t *block_num, uint16_t *block_size); 29 | int8_t (* IsReady)(uint8_t lun); 30 | int8_t (* IsWriteProtected)(uint8_t lun); 31 | int8_t (* Read)(uint8_t lun, uint8_t *buf, uint32_t blk_addr, uint16_t blk_len); 32 | int8_t (* Write)(uint8_t lun, uint8_t *buf, uint32_t blk_addr, uint16_t blk_len); 33 | int8_t (* GetMaxLun)(void); 34 | int8_t *pInquiry; 35 | 36 | } USBD_StorageTypeDef; 37 | 38 | #include "usbd_cdc_if.h" 39 | #include "usbd_storage_if.h" 40 | 41 | #include "usbd_def.h" 42 | #include "usbd_core.h" 43 | #include "usbd_desc.h" 44 | 45 | #include "usbd_cdc.h" 46 | 47 | #include "usbd_msc_bot.h" 48 | #include "usbd_msc_data.h" 49 | #include "usbd_msc_scsi.h" 50 | #include "usbd_msc.h" 51 | 52 | #include "usbd_mult.h" 53 | 54 | #include "usbd_conf.h" 55 | 56 | extern USBD_HandleTypeDef USBD_Device; 57 | 58 | u8 usb_connent(); 59 | u8 usb_Msc_connent(); 60 | void usb_disconnent(); 61 | 62 | #endif -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # STM32G4_OSC 2 | 3 | #### 介绍 4 | STM32示波器基础版开源代码 5 | 6 | #### 介绍 7 | 见[LCEDA](https://oshwhub.com/eltecz/stm32g0osc_s) [B站](https://www.bilibili.com/video/BV1SY4y177Au?) 8 | 9 | 本仓库仅保存工程代码,其他见LCEDA 10 | 11 | 一般不注释代码,后续讲解见LCEDA 12 | 13 | #### 安装教程 14 | 15 | keil编译工程即可,注意本项目工程使用AC6编译器 16 | 17 | 注意事项请移步立创EDA开源链接查询 18 | 19 | 20 | #### 使用说明 21 | 22 | **禁止商用!!!** 23 | 24 | #### 更新记录 25 | 26 | 22/11/20 初次上传 27 | -------------------------------------------------------------------------------- /STM32G4xx_HAL_Driver/Inc/stm32g4xx_hal_pcd_ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G4_OSC/9778f077c6a447817cad48cecee05a23d305e67c/STM32G4xx_HAL_Driver/Inc/stm32g4xx_hal_pcd_ex.h -------------------------------------------------------------------------------- /STM32G4xx_HAL_Driver/LICENSE.txt: -------------------------------------------------------------------------------- 1 | This software component is provided to you as part of a software package and 2 | applicable license terms are in the Package_license file. If you received this 3 | software component outside of a package or without applicable license terms, 4 | the terms of the BSD-3-Clause license shall apply. 5 | You may obtain a copy of the BSD-3-Clause at: 6 | https://opensource.org/licenses/BSD-3-Clause 7 | --------------------------------------------------------------------------------