├── .gitattributes
├── .gitignore
├── Keil_Project
├── DebugConfig
│ └── Target_1_STM32F407VGTx.dbgconf
├── EventRecorderStub.scvd
├── LIB
│ ├── SPL
│ │ ├── inc
│ │ │ ├── misc.h
│ │ │ ├── stm32f4xx_adc.h
│ │ │ ├── stm32f4xx_can.h
│ │ │ ├── stm32f4xx_cec.h
│ │ │ ├── stm32f4xx_crc.h
│ │ │ ├── stm32f4xx_cryp.h
│ │ │ ├── stm32f4xx_dac.h
│ │ │ ├── stm32f4xx_dbgmcu.h
│ │ │ ├── stm32f4xx_dcmi.h
│ │ │ ├── stm32f4xx_dfsdm.h
│ │ │ ├── stm32f4xx_dma.h
│ │ │ ├── stm32f4xx_dma2d.h
│ │ │ ├── stm32f4xx_dsi.h
│ │ │ ├── stm32f4xx_exti.h
│ │ │ ├── stm32f4xx_flash.h
│ │ │ ├── stm32f4xx_flash_ramfunc.h
│ │ │ ├── stm32f4xx_fmc.h
│ │ │ ├── stm32f4xx_fmpi2c.h
│ │ │ ├── stm32f4xx_fsmc.h
│ │ │ ├── stm32f4xx_gpio.h
│ │ │ ├── stm32f4xx_hash.h
│ │ │ ├── stm32f4xx_i2c.h
│ │ │ ├── stm32f4xx_iwdg.h
│ │ │ ├── stm32f4xx_lptim.h
│ │ │ ├── stm32f4xx_ltdc.h
│ │ │ ├── stm32f4xx_pwr.h
│ │ │ ├── stm32f4xx_qspi.h
│ │ │ ├── stm32f4xx_rcc.h
│ │ │ ├── stm32f4xx_rng.h
│ │ │ ├── stm32f4xx_rtc.h
│ │ │ ├── stm32f4xx_sai.h
│ │ │ ├── stm32f4xx_sdio.h
│ │ │ ├── stm32f4xx_spdifrx.h
│ │ │ ├── stm32f4xx_spi.h
│ │ │ ├── stm32f4xx_syscfg.h
│ │ │ ├── stm32f4xx_tim.h
│ │ │ ├── stm32f4xx_usart.h
│ │ │ └── stm32f4xx_wwdg.h
│ │ └── src
│ │ │ ├── misc.c
│ │ │ ├── stm32f4xx_adc.c
│ │ │ ├── stm32f4xx_can.c
│ │ │ ├── stm32f4xx_cec.c
│ │ │ ├── stm32f4xx_crc.c
│ │ │ ├── stm32f4xx_cryp.c
│ │ │ ├── stm32f4xx_cryp_aes.c
│ │ │ ├── stm32f4xx_cryp_des.c
│ │ │ ├── stm32f4xx_cryp_tdes.c
│ │ │ ├── stm32f4xx_dac.c
│ │ │ ├── stm32f4xx_dbgmcu.c
│ │ │ ├── stm32f4xx_dcmi.c
│ │ │ ├── stm32f4xx_dfsdm.c
│ │ │ ├── stm32f4xx_dma.c
│ │ │ ├── stm32f4xx_dma2d.c
│ │ │ ├── stm32f4xx_dsi.c
│ │ │ ├── stm32f4xx_exti.c
│ │ │ ├── stm32f4xx_flash.c
│ │ │ ├── stm32f4xx_flash_ramfunc.c
│ │ │ ├── stm32f4xx_fmc.c
│ │ │ ├── stm32f4xx_fmpi2c.c
│ │ │ ├── stm32f4xx_fsmc.c
│ │ │ ├── stm32f4xx_gpio.c
│ │ │ ├── stm32f4xx_hash.c
│ │ │ ├── stm32f4xx_hash_md5.c
│ │ │ ├── stm32f4xx_hash_sha1.c
│ │ │ ├── stm32f4xx_i2c.c
│ │ │ ├── stm32f4xx_iwdg.c
│ │ │ ├── stm32f4xx_lptim.c
│ │ │ ├── stm32f4xx_ltdc.c
│ │ │ ├── stm32f4xx_pwr.c
│ │ │ ├── stm32f4xx_qspi.c
│ │ │ ├── stm32f4xx_rcc.c
│ │ │ ├── stm32f4xx_rng.c
│ │ │ ├── stm32f4xx_rtc.c
│ │ │ ├── stm32f4xx_sai.c
│ │ │ ├── stm32f4xx_sdio.c
│ │ │ ├── stm32f4xx_spdifrx.c
│ │ │ ├── stm32f4xx_spi.c
│ │ │ ├── stm32f4xx_syscfg.c
│ │ │ ├── stm32f4xx_tim.c
│ │ │ ├── stm32f4xx_usart.c
│ │ │ └── stm32f4xx_wwdg.c
│ ├── as5048
│ │ ├── as5048.c
│ │ └── as5048.h
│ ├── ini
│ │ ├── init.c
│ │ └── init.h
│ ├── motor
│ │ ├── motor.c
│ │ └── motor.h
│ ├── mylib.c
│ ├── mylib.h
│ ├── stm32f4xx.h
│ └── stm32f4xx_conf.h
├── Listings
│ ├── SPI_FOC.map
│ └── startup_stm32f407xx.lst
├── Objects
│ ├── ExtDll.iex
│ ├── SPI_FOC.axf
│ ├── SPI_FOC.build_log.htm
│ ├── SPI_FOC.htm
│ ├── SPI_FOC.lnp
│ ├── SPI_FOC_Target 1.dep
│ ├── as5048.crf
│ ├── as5048.d
│ ├── as5048.o
│ ├── init.crf
│ ├── init.d
│ ├── init.o
│ ├── main.crf
│ ├── main.d
│ ├── main.o
│ ├── misc.crf
│ ├── misc.d
│ ├── misc.o
│ ├── motor.crf
│ ├── motor.d
│ ├── motor.o
│ ├── mylib.crf
│ ├── mylib.d
│ ├── mylib.o
│ ├── startup_stm32f407xx.d
│ ├── startup_stm32f407xx.o
│ ├── stm32f4xx_adc.crf
│ ├── stm32f4xx_adc.d
│ ├── stm32f4xx_adc.o
│ ├── stm32f4xx_can.crf
│ ├── stm32f4xx_can.d
│ ├── stm32f4xx_can.o
│ ├── stm32f4xx_cec.crf
│ ├── stm32f4xx_cec.d
│ ├── stm32f4xx_cec.o
│ ├── stm32f4xx_crc.crf
│ ├── stm32f4xx_crc.d
│ ├── stm32f4xx_crc.o
│ ├── stm32f4xx_cryp.crf
│ ├── stm32f4xx_cryp.d
│ ├── stm32f4xx_cryp.o
│ ├── stm32f4xx_cryp_aes.crf
│ ├── stm32f4xx_cryp_aes.d
│ ├── stm32f4xx_cryp_aes.o
│ ├── stm32f4xx_cryp_des.crf
│ ├── stm32f4xx_cryp_des.d
│ ├── stm32f4xx_cryp_des.o
│ ├── stm32f4xx_cryp_tdes.crf
│ ├── stm32f4xx_cryp_tdes.d
│ ├── stm32f4xx_cryp_tdes.o
│ ├── stm32f4xx_dac.crf
│ ├── stm32f4xx_dac.d
│ ├── stm32f4xx_dac.o
│ ├── stm32f4xx_dbgmcu.crf
│ ├── stm32f4xx_dbgmcu.d
│ ├── stm32f4xx_dbgmcu.o
│ ├── stm32f4xx_dcmi.crf
│ ├── stm32f4xx_dcmi.d
│ ├── stm32f4xx_dcmi.o
│ ├── stm32f4xx_dfsdm.crf
│ ├── stm32f4xx_dfsdm.d
│ ├── stm32f4xx_dfsdm.o
│ ├── stm32f4xx_dma.crf
│ ├── stm32f4xx_dma.d
│ ├── stm32f4xx_dma.o
│ ├── stm32f4xx_dma2d.crf
│ ├── stm32f4xx_dma2d.d
│ ├── stm32f4xx_dma2d.o
│ ├── stm32f4xx_dsi.crf
│ ├── stm32f4xx_dsi.d
│ ├── stm32f4xx_dsi.o
│ ├── stm32f4xx_exti.crf
│ ├── stm32f4xx_exti.d
│ ├── stm32f4xx_exti.o
│ ├── stm32f4xx_flash.crf
│ ├── stm32f4xx_flash.d
│ ├── stm32f4xx_flash.o
│ ├── stm32f4xx_flash_ramfunc.crf
│ ├── stm32f4xx_flash_ramfunc.d
│ ├── stm32f4xx_flash_ramfunc.o
│ ├── stm32f4xx_fmc.d
│ ├── stm32f4xx_fmpi2c.crf
│ ├── stm32f4xx_fmpi2c.d
│ ├── stm32f4xx_fmpi2c.o
│ ├── stm32f4xx_fsmc.crf
│ ├── stm32f4xx_fsmc.d
│ ├── stm32f4xx_fsmc.o
│ ├── stm32f4xx_gpio.crf
│ ├── stm32f4xx_gpio.d
│ ├── stm32f4xx_gpio.o
│ ├── stm32f4xx_hash.crf
│ ├── stm32f4xx_hash.d
│ ├── stm32f4xx_hash.o
│ ├── stm32f4xx_hash_md5.crf
│ ├── stm32f4xx_hash_md5.d
│ ├── stm32f4xx_hash_md5.o
│ ├── stm32f4xx_hash_sha1.crf
│ ├── stm32f4xx_hash_sha1.d
│ ├── stm32f4xx_hash_sha1.o
│ ├── stm32f4xx_i2c.crf
│ ├── stm32f4xx_i2c.d
│ ├── stm32f4xx_i2c.o
│ ├── stm32f4xx_iwdg.crf
│ ├── stm32f4xx_iwdg.d
│ ├── stm32f4xx_iwdg.o
│ ├── stm32f4xx_lptim.crf
│ ├── stm32f4xx_lptim.d
│ ├── stm32f4xx_lptim.o
│ ├── stm32f4xx_ltdc.crf
│ ├── stm32f4xx_ltdc.d
│ ├── stm32f4xx_ltdc.o
│ ├── stm32f4xx_pwr.crf
│ ├── stm32f4xx_pwr.d
│ ├── stm32f4xx_pwr.o
│ ├── stm32f4xx_qspi.crf
│ ├── stm32f4xx_qspi.d
│ ├── stm32f4xx_qspi.o
│ ├── stm32f4xx_rcc.crf
│ ├── stm32f4xx_rcc.d
│ ├── stm32f4xx_rcc.o
│ ├── stm32f4xx_rng.crf
│ ├── stm32f4xx_rng.d
│ ├── stm32f4xx_rng.o
│ ├── stm32f4xx_rtc.crf
│ ├── stm32f4xx_rtc.d
│ ├── stm32f4xx_rtc.o
│ ├── stm32f4xx_sai.crf
│ ├── stm32f4xx_sai.d
│ ├── stm32f4xx_sai.o
│ ├── stm32f4xx_sdio.crf
│ ├── stm32f4xx_sdio.d
│ ├── stm32f4xx_sdio.o
│ ├── stm32f4xx_spdifrx.crf
│ ├── stm32f4xx_spdifrx.d
│ ├── stm32f4xx_spdifrx.o
│ ├── stm32f4xx_spi.crf
│ ├── stm32f4xx_spi.d
│ ├── stm32f4xx_spi.o
│ ├── stm32f4xx_syscfg.crf
│ ├── stm32f4xx_syscfg.d
│ ├── stm32f4xx_syscfg.o
│ ├── stm32f4xx_tim.crf
│ ├── stm32f4xx_tim.d
│ ├── stm32f4xx_tim.o
│ ├── stm32f4xx_usart.crf
│ ├── stm32f4xx_usart.d
│ ├── stm32f4xx_usart.o
│ ├── stm32f4xx_wwdg.crf
│ ├── stm32f4xx_wwdg.d
│ ├── stm32f4xx_wwdg.o
│ ├── system_stm32f4xx.crf
│ ├── system_stm32f4xx.d
│ └── system_stm32f4xx.o
├── RTE
│ ├── Device
│ │ └── STM32F407VGTx
│ │ │ ├── startup_stm32f407xx.s
│ │ │ └── system_stm32f4xx.c
│ └── _Target_1
│ │ └── RTE_Components.h
├── SPI_FOC.uvguix.В1
├── SPI_FOC.uvoptx
├── SPI_FOC.uvprojx
├── main.c
└── tmstudio
│ ├── 1.tsc
│ └── 1.tsp
├── Motor_PCB_V2
├── History
│ ├── Motor_PCB.~(1).PrjPcb.Zip
│ ├── Motor_PCB.~(2).PrjPcb.Zip
│ ├── Motor_PCB.~(3).PrjPcb.Zip
│ ├── Motor_PCB.~(4).PrjPcb.Zip
│ ├── Motor_PCB.~(5).PrjPcb.Zip
│ ├── Motor_PCB.~(6).PrjPcb.Zip
│ ├── Motor_PCB.~(7).PrjPcb.Zip
│ ├── PCB1.~(1).PcbDoc.Zip
│ ├── PCB1.~(11).PcbDoc.Zip
│ ├── PCB1.~(12).PcbDoc.Zip
│ ├── PCB1.~(13).PcbDoc.Zip
│ ├── PCB1.~(14).PcbDoc.Zip
│ ├── PCB1.~(15).PcbDoc.Zip
│ ├── PCB1.~(16).PcbDoc.Zip
│ ├── PCB1.~(17).PcbDoc.Zip
│ ├── PCB1.~(18).PcbDoc.Zip
│ ├── PCB1.~(19).PcbDoc.Zip
│ ├── PCB1.~(2).PcbDoc.Zip
│ ├── PCB1.~(20).PcbDoc.Zip
│ ├── PCB1.~(21).PcbDoc.Zip
│ ├── PCB1.~(22).PcbDoc.Zip
│ ├── PCB1.~(23).PcbDoc.Zip
│ ├── PCB1.~(24).PcbDoc.Zip
│ ├── PCB1.~(25).PcbDoc.Zip
│ ├── PCB1.~(26).PcbDoc.Zip
│ ├── PCB1.~(27).PcbDoc.Zip
│ ├── PCB1.~(28).PcbDoc.Zip
│ ├── PCB1.~(29).PcbDoc.Zip
│ ├── PCB1.~(3).PcbDoc.Zip
│ ├── PCB1.~(30).PcbDoc.Zip
│ ├── PCB1.~(31).PcbDoc.Zip
│ ├── PCB1.~(32).PcbDoc.Zip
│ ├── PCB1.~(33).PcbDoc.Zip
│ ├── PCB1.~(34).PcbDoc.Zip
│ ├── PCB1.~(35).PcbDoc.Zip
│ ├── PCB1.~(36).PcbDoc.Zip
│ ├── PCB1.~(37).PcbDoc.Zip
│ ├── PCB1.~(38).PcbDoc.Zip
│ ├── PCB1.~(39).PcbDoc.Zip
│ ├── PCB1.~(4).PcbDoc.Zip
│ ├── PCB1.~(40).PcbDoc.Zip
│ ├── PCB1.~(41).PcbDoc.Zip
│ ├── PCB1.~(42).PcbDoc.Zip
│ ├── PCB1.~(43).PcbDoc.Zip
│ ├── PCB1.~(44).PcbDoc.Zip
│ ├── PCB1.~(45).PcbDoc.Zip
│ ├── PCB1.~(46).PcbDoc.Zip
│ ├── PCB1.~(47).PcbDoc.Zip
│ ├── PCB1.~(48).PcbDoc.Zip
│ ├── PCB1.~(49).PcbDoc.Zip
│ ├── PCB1.~(5).PcbDoc.Zip
│ ├── PCB1.~(50).PcbDoc.Zip
│ ├── PCB1.~(51).PcbDoc.Zip
│ ├── PCB1.~(52).PcbDoc.Zip
│ ├── PCB1.~(53).PcbDoc.Zip
│ ├── PCB1.~(54).PcbDoc.Zip
│ ├── PCB1.~(55).PcbDoc.Zip
│ ├── PCB1.~(56).PcbDoc.Zip
│ ├── PCB1.~(57).PcbDoc.Zip
│ ├── PCB1.~(58).PcbDoc.Zip
│ ├── PCB1.~(59).PcbDoc.Zip
│ ├── PCB1.~(6).PcbDoc.Zip
│ ├── PCB1.~(60).PcbDoc.Zip
│ ├── PCB1.~(61).PcbDoc.Zip
│ ├── PCB1.~(62).PcbDoc.Zip
│ ├── PCB1.~(63).PcbDoc.Zip
│ ├── PCB1.~(64).PcbDoc.Zip
│ ├── PCB1.~(7).PcbDoc.Zip
│ ├── PCB1.~(8).PcbDoc.Zip
│ ├── PCB1.~(9).PcbDoc.Zip
│ ├── PcbLib1.~(1).PcbLib.Zip
│ ├── PcbLib1.~(10).PcbLib.Zip
│ ├── PcbLib1.~(11).PcbLib.Zip
│ ├── PcbLib1.~(12).PcbLib.Zip
│ ├── PcbLib1.~(13).PcbLib.Zip
│ ├── PcbLib1.~(2).PcbLib.Zip
│ ├── PcbLib1.~(3).PcbLib.Zip
│ ├── PcbLib1.~(4).PcbLib.Zip
│ ├── PcbLib1.~(5).PcbLib.Zip
│ ├── PcbLib1.~(6).PcbLib.Zip
│ ├── PcbLib1.~(7).PcbLib.Zip
│ ├── PcbLib1.~(8).PcbLib.Zip
│ ├── PcbLib1.~(9).PcbLib.Zip
│ ├── Schlib1.~(1).SchLib.Zip
│ ├── Schlib1.~(10).SchLib.Zip
│ ├── Schlib1.~(11).SchLib.Zip
│ ├── Schlib1.~(12).SchLib.Zip
│ ├── Schlib1.~(13).SchLib.Zip
│ ├── Schlib1.~(14).SchLib.Zip
│ ├── Schlib1.~(15).SchLib.Zip
│ ├── Schlib1.~(16).SchLib.Zip
│ ├── Schlib1.~(17).SchLib.Zip
│ ├── Schlib1.~(18).SchLib.Zip
│ ├── Schlib1.~(19).SchLib.Zip
│ ├── Schlib1.~(2).SchLib.Zip
│ ├── Schlib1.~(20).SchLib.Zip
│ ├── Schlib1.~(21).SchLib.Zip
│ ├── Schlib1.~(22).SchLib.Zip
│ ├── Schlib1.~(23).SchLib.Zip
│ ├── Schlib1.~(24).SchLib.Zip
│ ├── Schlib1.~(25).SchLib.Zip
│ ├── Schlib1.~(26).SchLib.Zip
│ ├── Schlib1.~(27).SchLib.Zip
│ ├── Schlib1.~(28).SchLib.Zip
│ ├── Schlib1.~(29).SchLib.Zip
│ ├── Schlib1.~(3).SchLib.Zip
│ ├── Schlib1.~(30).SchLib.Zip
│ ├── Schlib1.~(31).SchLib.Zip
│ ├── Schlib1.~(32).SchLib.Zip
│ ├── Schlib1.~(33).SchLib.Zip
│ ├── Schlib1.~(4).SchLib.Zip
│ ├── Schlib1.~(5).SchLib.Zip
│ ├── Schlib1.~(6).SchLib.Zip
│ ├── Schlib1.~(7).SchLib.Zip
│ ├── Schlib1.~(8).SchLib.Zip
│ ├── Schlib1.~(9).SchLib.Zip
│ ├── Sheet1.~(1).SchDoc.Zip
│ ├── Sheet1.~(10).SchDoc.Zip
│ ├── Sheet1.~(11).SchDoc.Zip
│ ├── Sheet1.~(12).SchDoc.Zip
│ ├── Sheet1.~(13).SchDoc.Zip
│ ├── Sheet1.~(14).SchDoc.Zip
│ ├── Sheet1.~(15).SchDoc.Zip
│ ├── Sheet1.~(16).SchDoc.Zip
│ ├── Sheet1.~(17).SchDoc.Zip
│ ├── Sheet1.~(18).SchDoc.Zip
│ ├── Sheet1.~(19).SchDoc.Zip
│ ├── Sheet1.~(20).SchDoc.Zip
│ ├── Sheet1.~(21).SchDoc.Zip
│ ├── Sheet1.~(22).SchDoc.Zip
│ ├── Sheet1.~(23).SchDoc.Zip
│ ├── Sheet1.~(24).SchDoc.Zip
│ ├── Sheet1.~(25).SchDoc.Zip
│ ├── Sheet1.~(26).SchDoc.Zip
│ ├── Sheet1.~(27).SchDoc.Zip
│ ├── Sheet1.~(28).SchDoc.Zip
│ ├── Sheet1.~(29).SchDoc.Zip
│ ├── Sheet1.~(3).SchDoc.Zip
│ ├── Sheet1.~(30).SchDoc.Zip
│ ├── Sheet1.~(31).SchDoc.Zip
│ ├── Sheet1.~(32).SchDoc.Zip
│ ├── Sheet1.~(33).SchDoc.Zip
│ ├── Sheet1.~(34).SchDoc.Zip
│ ├── Sheet1.~(35).SchDoc.Zip
│ ├── Sheet1.~(36).SchDoc.Zip
│ ├── Sheet1.~(37).SchDoc.Zip
│ ├── Sheet1.~(38).SchDoc.Zip
│ ├── Sheet1.~(39).SchDoc.Zip
│ ├── Sheet1.~(4).SchDoc.Zip
│ ├── Sheet1.~(40).SchDoc.Zip
│ ├── Sheet1.~(41).SchDoc.Zip
│ ├── Sheet1.~(42).SchDoc.Zip
│ ├── Sheet1.~(43).SchDoc.Zip
│ ├── Sheet1.~(44).SchDoc.Zip
│ ├── Sheet1.~(45).SchDoc.Zip
│ ├── Sheet1.~(46).SchDoc.Zip
│ ├── Sheet1.~(47).SchDoc.Zip
│ ├── Sheet1.~(48).SchDoc.Zip
│ ├── Sheet1.~(49).SchDoc.Zip
│ ├── Sheet1.~(5).SchDoc.Zip
│ ├── Sheet1.~(50).SchDoc.Zip
│ ├── Sheet1.~(51).SchDoc.Zip
│ ├── Sheet1.~(52).SchDoc.Zip
│ ├── Sheet1.~(53).SchDoc.Zip
│ ├── Sheet1.~(54).SchDoc.Zip
│ ├── Sheet1.~(55).SchDoc.Zip
│ ├── Sheet1.~(56).SchDoc.Zip
│ ├── Sheet1.~(57).SchDoc.Zip
│ ├── Sheet1.~(58).SchDoc.Zip
│ ├── Sheet1.~(59).SchDoc.Zip
│ ├── Sheet1.~(6).SchDoc.Zip
│ ├── Sheet1.~(7).SchDoc.Zip
│ ├── Sheet1.~(8).SchDoc.Zip
│ └── Sheet1.~(9).SchDoc.Zip
├── Job1.OutJob
├── Motor_PCB.PrjPcb
├── Motor_PCB.PrjPcbStructure
├── PCB1.PcbDoc
├── PcbLib1.PcbLib
├── Project Logs for Motor_PCB
│ ├── PCB1 PCB ECO 11.02.2018 16-02-50.LOG
│ ├── PCB1 PCB ECO 11.02.2018 16-12-08.LOG
│ ├── PCB1 PCB ECO 11.02.2018 16-16-27.LOG
│ ├── PCB1 PCB ECO 11.02.2018 16-18-26.LOG
│ ├── PCB1 PCB ECO 11.02.2018 16-19-14.LOG
│ ├── PCB1 PCB ECO 11.02.2018 16-19-50.LOG
│ ├── PCB1 PCB ECO 11.02.2018 16-21-17.LOG
│ ├── PCB1 PCB ECO 11.02.2018 16-23-42.LOG
│ ├── PCB1 PCB ECO 11.02.2018 16-31-01.LOG
│ ├── PCB1 PCB ECO 11.02.2018 18-49-05.LOG
│ ├── PCB1 PCB ECO 11.02.2018 18-53-23.LOG
│ ├── PCB1 PCB ECO 11.02.2018 18-55-04.LOG
│ ├── PCB1 PCB ECO 11.02.2018 19-00-00.LOG
│ ├── PCB1 PCB ECO 11.02.2018 19-17-21.LOG
│ ├── Sheet1 SCH ECO 11.02.2018 14-06-46.LOG
│ ├── Sheet1 SCH ECO 11.02.2018 14-20-23.LOG
│ ├── Sheet1 SCH ECO 11.02.2018 14-35-30.LOG
│ ├── Sheet1 SCH ECO 11.02.2018 14-37-27.LOG
│ ├── Sheet1 SCH ECO 11.02.2018 15-38-45.LOG
│ ├── Sheet1 SCH ECO 11.02.2018 15-39-32.LOG
│ ├── Sheet1 SCH ECO 11.02.2018 15-42-16.LOG
│ ├── Sheet1 SCH ECO 11.02.2018 15-42-45.LOG
│ ├── Sheet1 SCH ECO 11.02.2018 16-01-27.LOG
│ ├── Sheet1 SCH ECO 11.02.2018 16-02-00.LOG
│ ├── Sheet1 SCH ECO 11.02.2018 16-11-50.LOG
│ ├── Sheet1 SCH ECO 11.02.2018 16-18-11.LOG
│ ├── Sheet1 SCH ECO 11.02.2018 16-21-10.LOG
│ ├── Sheet1 SCH ECO 11.02.2018 16-22-37.LOG
│ ├── Sheet1 SCH ECO 11.02.2018 16-22-53.LOG
│ ├── Sheet1 SCH ECO 11.02.2018 18-48-44.LOG
│ ├── Sheet1 SCH ECO 11.02.2018 18-53-12.LOG
│ └── Sheet1 SCH ECO 11.02.2018 18-54-11.LOG
├── Project Outputs for Motor_PCB
│ ├── Design Rule Check - PCB1.drc
│ └── Design Rule Check - PCB1.html
├── Schlib1.SchLib
├── Sheet1.SchDoc
└── __Previews
│ ├── PCB1.PcbDocPreview
│ └── Sheet1.SchDocPreview
├── README.md
├── graph
├── El.JPG
└── Structure.JPG
├── Новый текстовый документ.txt
└── Сравнение методов управления двигателями FOC | Simlified FOC | Sinusoidal.pdf
/.gitattributes:
--------------------------------------------------------------------------------
1 | # Auto detect text files and perform LF normalization
2 | * text=auto
3 |
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 |
2 | Keil_Project/Objects/main.crf
3 |
--------------------------------------------------------------------------------
/Keil_Project/DebugConfig/Target_1_STM32F407VGTx.dbgconf:
--------------------------------------------------------------------------------
1 | // <<< Use Configuration Wizard in Context Menu >>>
2 |
3 | // Debug MCU Configuration
4 | // DBG_SLEEP Debug Sleep Mode
5 | // DBG_STOP Debug Stop Mode
6 | // DBG_STANDBY Debug Standby Mode
7 | //
8 | DbgMCU_CR = 0x00000007;
9 |
10 | // Debug MCU APB1 Freeze
11 | // DBG_TIM2_STOP Timer 2 Stopped when Core is halted
12 | // DBG_TIM3_STOP Timer 3 Stopped when Core is halted
13 | // DBG_TIM4_STOP Timer 4 Stopped when Core is halted
14 | // DBG_TIM5_STOP Timer 5 Stopped when Core is halted
15 | // DBG_TIM6_STOP Timer 6 Stopped when Core is halted
16 | // DBG_TIM7_STOP Timer 7 Stopped when Core is halted
17 | // DBG_TIM12_STOP Timer 12 Stopped when Core is halted
18 | // DBG_TIM13_STOP Timer 13 Stopped when Core is halted
19 | // DBG_TIM14_STOP Timer 14 Stopped when Core is halted
20 | // DBG_RTC_STOP RTC Stopped when Core is halted
21 | // DBG_WWDG_STOP Window Watchdog Stopped when Core is halted
22 | // DBG_IWDG_STOP Independent Watchdog Stopped when Core is halted
23 | // DBG_I2C1_SMBUS_TIMEOUT I2C1 SMBUS Timeout Mode Stopped when Core is halted
24 | // DBG_I2C2_SMBUS_TIMEOUT I2C2 SMBUS Timeout Mode Stopped when Core is halted
25 | // DBG_I2C3_SMBUS_TIMEOUT I2C3 SMBUS Timeout Mode Stopped when Core is halted
26 | // DBG_CAN1_STOP CAN1 Stopped when Core is halted
27 | // DBG_CAN2_STOP CAN2 Stopped when Core is halted
28 | //
29 | DbgMCU_APB1_Fz = 0x00000000;
30 |
31 |
32 | // Debug MCU APB2 Freeze
33 | // DBG_TIM1_STOP Timer 1 Stopped when Core is halted
34 | // DBG_TIM8_STOP Timer 8 Stopped when Core is halted
35 | // DBG_TIM9_STOP Timer 9 Stopped when Core is halted
36 | // DBG_TIM10_STOP Timer 10 Stopped when Core is halted
37 | // DBG_TIM11_STOP Timer 11 Stopped when Core is halted
38 | //
39 | DbgMCU_APB2_Fz = 0x00000000;
40 |
41 | // <<< end of configuration section >>>
--------------------------------------------------------------------------------
/Keil_Project/EventRecorderStub.scvd:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
--------------------------------------------------------------------------------
/Keil_Project/LIB/SPL/src/stm32f4xx_qspi.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Keil_Project/LIB/SPL/src/stm32f4xx_qspi.c
--------------------------------------------------------------------------------
/Keil_Project/LIB/as5048/as5048.h:
--------------------------------------------------------------------------------
1 | #include "stm32f4xx_gpio.h"
2 | #include "stm32f4xx_rcc.h"
3 | #include "stm32f4xx_spi.h"
4 | #include "math.h"
5 | #include "arm_math.h"
6 |
7 |
8 |
9 | #define window 100
10 | #define window_ADC 2000
11 |
12 |
13 | #define CS3_ON() GPIO_ResetBits(GPIOC, GPIO_Pin_9)
14 | #define CS3_OFF() GPIO_SetBits(GPIOC, GPIO_Pin_9)
15 |
16 |
17 |
18 |
19 |
20 |
21 | /*
22 | uint8_t filled_ADC;
23 | uint16_t i_ADC; // counter for filling in
24 | float data_ADC;
25 | float arr_ADC[window], angle_average, a_i_ADC, des_val_raw; // variables for first order moving average
26 | uint16_t k_ADC; // counter
27 | uint32_t ADC_average;
28 | uint8_t flag_ADC;
29 | uint32_t sum_ADC;
30 | */
31 |
32 |
33 |
34 | /*
35 |
36 |
37 | typedef struct
38 | {
39 | uint8_t filled;
40 |
41 | uint16_t i_buf; // Scounter for buffering
42 |
43 |
44 | uint16_t window_av //Specifies the speed for the selected pins.
45 |
46 |
47 | uint16_t arr[window_av]; // Specifies the operating output type for the selected pins.
48 |
49 |
50 | GPIOPuPd_TypeDef GPIO_PuPd; // Specifies the operating Pull-up/Pull down for the selected pins.
51 |
52 | }MovingAveage_TypeDef;
53 |
54 | */
55 |
56 |
57 |
58 |
59 |
60 |
61 |
62 |
63 | void encoder_as5048_SPI3(void);
64 | void SPI3_ini(void);
65 | float get_angle(void);
66 | float average_angle(void) ;
67 | float get_angle_once(void);
68 | float SecondOrder_average(void);
69 | float ThirdOrder_average(void);
70 | float CQ_average_angle(void);
71 |
--------------------------------------------------------------------------------
/Keil_Project/LIB/ini/init.h:
--------------------------------------------------------------------------------
1 | #ifndef INIT_H
2 | #define INIT_H
3 |
4 | #include "stm32f4xx_adc.h"
5 |
6 | void TIM4_ini(void);
7 | void PWM_INx_init(void);
8 | void ENx_init(void);
9 | void ADC_initt(void);
10 |
11 | void TIM5_ini(void);
12 | void myDelay_microsec(uint32_t delay);
13 | void myDelay_ms(uint32_t delay);
14 |
15 | void USART_2_init(void);
16 |
17 | #define PWM_period 2100//3200
18 |
19 |
20 |
21 | #endif
22 |
23 |
24 |
--------------------------------------------------------------------------------
/Keil_Project/LIB/motor/motor.h:
--------------------------------------------------------------------------------
1 | #ifndef MOTOR_H
2 | #define MOTOR_H
3 |
4 | #include "stm32f4xx.h" // Device header
5 | #include "stm32f4xx_gpio.h"
6 | #include "stm32f4xx_rcc.h"
7 | #include "init.h"
8 | #include "arm_math.h"
9 |
10 |
11 | #define High 0x01
12 | #define Low 0x00
13 | #define average 100
14 | #define Pole_Pairs 11
15 | #define Vdc 12
16 | #define Pi 3.1415926535897932384
17 | #define CALIBRATION 0
18 |
19 |
20 |
21 |
22 | // PA1 - EN1
23 | // PA2 - EN2 (nReset)
24 | // PA3 - EN3 (EN2)
25 | // PA4 - nSLEEP
26 | // PA5 - nRESET (EN3)
27 | // IN1(PWM1) - PD12
28 | // IN2(PWM2) - PD13
29 | // IN3(PWM3) - PD14
30 |
31 |
32 |
33 |
34 |
35 |
36 |
37 |
38 |
39 | void Use_HalfBridge(int num, int Transistor, int power); // num - 1,2,3; Switch - High or Low; power - duty cycle
40 | void dead_time(uint32_t time);
41 | void Set_nRes_nSleep(void);
42 | void Set_ENx(void);
43 | void Change_winding(void);
44 |
45 |
46 |
47 | void rotate_forv(void);
48 | void rotate_back(void);
49 | void sine_PWM_ini(void);
50 | //float average_angle(uint16_t raw_angle);
51 |
52 |
53 | void FOC_InitPosition(void);
54 | void FOC(float angle, float error_angle, float K_p, float K_d, float K_I, uint32_t dt);
55 |
56 |
57 |
58 | void sinus_control(float des_val_);
59 | void sinus_control_V2(float error_angle, float V, float K, float step_max);
60 | void combined_control_V3(float angle, float error_angle, float V, float K, float step_max);
61 |
62 |
63 |
64 |
65 |
66 |
67 |
68 |
69 |
70 | #endif
71 |
--------------------------------------------------------------------------------
/Keil_Project/LIB/mylib.h:
--------------------------------------------------------------------------------
1 | #include "stm32f4xx_adc.h"
2 |
3 |
4 |
5 | #define FILTER_BUF 2500
6 |
7 |
8 |
9 | typedef struct
10 | {
11 | uint8_t filled; // filter filled flag
12 |
13 | uint8_t error; // error flag;
14 |
15 | uint8_t init; //
16 |
17 | float buffer[FILTER_BUF]; // buffer
18 |
19 | float sum; // sum of buf
20 |
21 | float output; // output of the filter
22 |
23 | uint16_t counter1; // counter for filling buffer in
24 |
25 | uint16_t counter2; // counter for filtration
26 |
27 | float input;
28 |
29 | } moving_average_type;
30 |
31 |
32 |
33 |
34 |
35 | void TIM5_ini(void);
36 | void led15_ini(void);
37 | void myDelay_microsec(uint32_t delay);
38 | void myDelay_ms(uint32_t delay);
39 | float moving_average(moving_average_type* filter_x, float input, float window_f);
40 |
41 | #define window_Roll 10000
42 |
--------------------------------------------------------------------------------
/Keil_Project/LIB/stm32f4xx.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Keil_Project/LIB/stm32f4xx.h
--------------------------------------------------------------------------------
/Keil_Project/Objects/ExtDll.iex:
--------------------------------------------------------------------------------
1 | [EXTDLL]
2 | Count=0
3 |
--------------------------------------------------------------------------------
/Keil_Project/Objects/SPI_FOC.axf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Keil_Project/Objects/SPI_FOC.axf
--------------------------------------------------------------------------------
/Keil_Project/Objects/SPI_FOC.build_log.htm:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Keil_Project/Objects/SPI_FOC.build_log.htm
--------------------------------------------------------------------------------
/Keil_Project/Objects/SPI_FOC.lnp:
--------------------------------------------------------------------------------
1 | --cpu=Cortex-M4.fp
2 | ".\objects\main.o"
3 | ".\objects\mylib.o"
4 | ".\objects\init.o"
5 | ".\objects\motor.o"
6 | ".\objects\misc.o"
7 | ".\objects\stm32f4xx_adc.o"
8 | ".\objects\stm32f4xx_can.o"
9 | ".\objects\stm32f4xx_cec.o"
10 | ".\objects\stm32f4xx_crc.o"
11 | ".\objects\stm32f4xx_cryp.o"
12 | ".\objects\stm32f4xx_cryp_aes.o"
13 | ".\objects\stm32f4xx_cryp_des.o"
14 | ".\objects\stm32f4xx_cryp_tdes.o"
15 | ".\objects\stm32f4xx_dac.o"
16 | ".\objects\stm32f4xx_dbgmcu.o"
17 | ".\objects\stm32f4xx_dcmi.o"
18 | ".\objects\stm32f4xx_dfsdm.o"
19 | ".\objects\stm32f4xx_dma.o"
20 | ".\objects\stm32f4xx_dma2d.o"
21 | ".\objects\stm32f4xx_dsi.o"
22 | ".\objects\stm32f4xx_exti.o"
23 | ".\objects\stm32f4xx_flash.o"
24 | ".\objects\stm32f4xx_flash_ramfunc.o"
25 | ".\objects\stm32f4xx_fmpi2c.o"
26 | ".\objects\stm32f4xx_fsmc.o"
27 | ".\objects\stm32f4xx_gpio.o"
28 | ".\objects\stm32f4xx_hash.o"
29 | ".\objects\stm32f4xx_hash_md5.o"
30 | ".\objects\stm32f4xx_hash_sha1.o"
31 | ".\objects\stm32f4xx_i2c.o"
32 | ".\objects\stm32f4xx_iwdg.o"
33 | ".\objects\stm32f4xx_lptim.o"
34 | ".\objects\stm32f4xx_ltdc.o"
35 | ".\objects\stm32f4xx_pwr.o"
36 | ".\objects\stm32f4xx_qspi.o"
37 | ".\objects\stm32f4xx_rcc.o"
38 | ".\objects\stm32f4xx_rng.o"
39 | ".\objects\stm32f4xx_rtc.o"
40 | ".\objects\stm32f4xx_sai.o"
41 | ".\objects\stm32f4xx_sdio.o"
42 | ".\objects\stm32f4xx_spdifrx.o"
43 | ".\objects\stm32f4xx_spi.o"
44 | ".\objects\stm32f4xx_syscfg.o"
45 | ".\objects\stm32f4xx_tim.o"
46 | ".\objects\stm32f4xx_usart.o"
47 | ".\objects\stm32f4xx_wwdg.o"
48 | ".\objects\as5048.o"
49 | "C:\Keil_v5\ARM\PACK\ARM\CMSIS\5.0.1\CMSIS\Lib\ARM\arm_cortexM4lf_math.lib"
50 | ".\objects\startup_stm32f407xx.o"
51 | ".\objects\system_stm32f4xx.o"
52 | --ro-base 0x08000000 --entry 0x08000000 --rw-base 0x20000000 --entry Reset_Handler --first __Vectors --strict --summary_stderr --info summarysizes --map --load_addr_map_info --xref --callgraph --symbols
53 | --info sizes --info totals --info unused --info veneers
54 | --list ".\Listings\SPI_FOC.map" -o .\Objects\SPI_FOC.axf
--------------------------------------------------------------------------------
/Keil_Project/Objects/as5048.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Keil_Project/Objects/as5048.crf
--------------------------------------------------------------------------------
/Keil_Project/Objects/as5048.d:
--------------------------------------------------------------------------------
1 | .\objects\as5048.o: LIB\as5048\as5048.c
2 | .\objects\as5048.o: LIB\as5048\as5048.h
3 | .\objects\as5048.o: .\LIB\SPL\inc\stm32f4xx_gpio.h
4 | .\objects\as5048.o: .\LIB\stm32f4xx.h
5 | .\objects\as5048.o: C:\Keil_v5\ARM\PACK\ARM\CMSIS\5.0.1\CMSIS\Include\core_cm4.h
6 | .\objects\as5048.o: C:\Keil_v5\ARM\ARMCC\Bin\..\include\stdint.h
7 | .\objects\as5048.o: C:\Keil_v5\ARM\PACK\ARM\CMSIS\5.0.1\CMSIS\Include\cmsis_compiler.h
8 | .\objects\as5048.o: C:\Keil_v5\ARM\PACK\ARM\CMSIS\5.0.1\CMSIS\Include\cmsis_armcc.h
9 | .\objects\as5048.o: C:\Keil_v5\ARM\PACK\Keil\STM32F4xx_DFP\2.11.0\Drivers\CMSIS\Device\ST\STM32F4xx\Include\system_stm32f4xx.h
10 | .\objects\as5048.o: .\LIB\stm32f4xx_conf.h
11 | .\objects\as5048.o: .\LIB\SPL\inc\stm32f4xx_adc.h
12 | .\objects\as5048.o: .\LIB\stm32f4xx.h
13 | .\objects\as5048.o: .\LIB\SPL\inc\stm32f4xx_crc.h
14 | .\objects\as5048.o: .\LIB\SPL\inc\stm32f4xx_dbgmcu.h
15 | .\objects\as5048.o: .\LIB\SPL\inc\stm32f4xx_dma.h
16 | .\objects\as5048.o: .\LIB\SPL\inc\stm32f4xx_exti.h
17 | .\objects\as5048.o: .\LIB\SPL\inc\stm32f4xx_flash.h
18 | .\objects\as5048.o: .\LIB\SPL\inc\stm32f4xx_gpio.h
19 | .\objects\as5048.o: .\LIB\SPL\inc\stm32f4xx_i2c.h
20 | .\objects\as5048.o: .\LIB\SPL\inc\stm32f4xx_iwdg.h
21 | .\objects\as5048.o: .\LIB\SPL\inc\stm32f4xx_pwr.h
22 | .\objects\as5048.o: .\LIB\SPL\inc\stm32f4xx_rcc.h
23 | .\objects\as5048.o: .\LIB\SPL\inc\stm32f4xx_rtc.h
24 | .\objects\as5048.o: .\LIB\SPL\inc\stm32f4xx_sdio.h
25 | .\objects\as5048.o: .\LIB\SPL\inc\stm32f4xx_spi.h
26 | .\objects\as5048.o: .\LIB\SPL\inc\stm32f4xx_syscfg.h
27 | .\objects\as5048.o: .\LIB\SPL\inc\stm32f4xx_tim.h
28 | .\objects\as5048.o: .\LIB\SPL\inc\stm32f4xx_usart.h
29 | .\objects\as5048.o: .\LIB\SPL\inc\stm32f4xx_wwdg.h
30 | .\objects\as5048.o: .\LIB\SPL\inc\misc.h
31 | .\objects\as5048.o: .\LIB\SPL\inc\stm32f4xx_cryp.h
32 | .\objects\as5048.o: .\LIB\SPL\inc\stm32f4xx_hash.h
33 | .\objects\as5048.o: .\LIB\SPL\inc\stm32f4xx_rng.h
34 | .\objects\as5048.o: .\LIB\SPL\inc\stm32f4xx_can.h
35 | .\objects\as5048.o: .\LIB\SPL\inc\stm32f4xx_dac.h
36 | .\objects\as5048.o: .\LIB\SPL\inc\stm32f4xx_dcmi.h
37 | .\objects\as5048.o: .\LIB\SPL\inc\stm32f4xx_fsmc.h
38 | .\objects\as5048.o: C:\Keil_v5\ARM\ARMCC\Bin\..\include\math.h
39 | .\objects\as5048.o: C:\Keil_v5\ARM\PACK\ARM\CMSIS\5.0.1\CMSIS\Include\arm_math.h
40 | .\objects\as5048.o: C:\Keil_v5\ARM\PACK\ARM\CMSIS\5.0.1\CMSIS\Include\core_cm4.h
41 | .\objects\as5048.o: C:\Keil_v5\ARM\ARMCC\Bin\..\include\string.h
42 | .\objects\as5048.o: .\LIB\mylib.h
43 |
--------------------------------------------------------------------------------
/Keil_Project/Objects/as5048.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Keil_Project/Objects/as5048.o
--------------------------------------------------------------------------------
/Keil_Project/Objects/init.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Keil_Project/Objects/init.crf
--------------------------------------------------------------------------------
/Keil_Project/Objects/init.d:
--------------------------------------------------------------------------------
1 | .\objects\init.o: LIB\ini\init.c
2 | .\objects\init.o: .\LIB\stm32f4xx.h
3 | .\objects\init.o: C:\Keil_v5\ARM\PACK\ARM\CMSIS\5.0.1\CMSIS\Include\core_cm4.h
4 | .\objects\init.o: C:\Keil_v5\ARM\ARMCC\Bin\..\include\stdint.h
5 | .\objects\init.o: C:\Keil_v5\ARM\PACK\ARM\CMSIS\5.0.1\CMSIS\Include\cmsis_compiler.h
6 | .\objects\init.o: C:\Keil_v5\ARM\PACK\ARM\CMSIS\5.0.1\CMSIS\Include\cmsis_armcc.h
7 | .\objects\init.o: C:\Keil_v5\ARM\PACK\Keil\STM32F4xx_DFP\2.11.0\Drivers\CMSIS\Device\ST\STM32F4xx\Include\system_stm32f4xx.h
8 | .\objects\init.o: .\LIB\stm32f4xx_conf.h
9 | .\objects\init.o: .\LIB\SPL\inc\stm32f4xx_adc.h
10 | .\objects\init.o: .\LIB\stm32f4xx.h
11 | .\objects\init.o: .\LIB\SPL\inc\stm32f4xx_crc.h
12 | .\objects\init.o: .\LIB\SPL\inc\stm32f4xx_dbgmcu.h
13 | .\objects\init.o: .\LIB\SPL\inc\stm32f4xx_dma.h
14 | .\objects\init.o: .\LIB\SPL\inc\stm32f4xx_exti.h
15 | .\objects\init.o: .\LIB\SPL\inc\stm32f4xx_flash.h
16 | .\objects\init.o: .\LIB\SPL\inc\stm32f4xx_gpio.h
17 | .\objects\init.o: .\LIB\SPL\inc\stm32f4xx_i2c.h
18 | .\objects\init.o: .\LIB\SPL\inc\stm32f4xx_iwdg.h
19 | .\objects\init.o: .\LIB\SPL\inc\stm32f4xx_pwr.h
20 | .\objects\init.o: .\LIB\SPL\inc\stm32f4xx_rcc.h
21 | .\objects\init.o: .\LIB\SPL\inc\stm32f4xx_rtc.h
22 | .\objects\init.o: .\LIB\SPL\inc\stm32f4xx_sdio.h
23 | .\objects\init.o: .\LIB\SPL\inc\stm32f4xx_spi.h
24 | .\objects\init.o: .\LIB\SPL\inc\stm32f4xx_syscfg.h
25 | .\objects\init.o: .\LIB\SPL\inc\stm32f4xx_tim.h
26 | .\objects\init.o: .\LIB\SPL\inc\stm32f4xx_usart.h
27 | .\objects\init.o: .\LIB\SPL\inc\stm32f4xx_wwdg.h
28 | .\objects\init.o: .\LIB\SPL\inc\misc.h
29 | .\objects\init.o: .\LIB\SPL\inc\stm32f4xx_cryp.h
30 | .\objects\init.o: .\LIB\SPL\inc\stm32f4xx_hash.h
31 | .\objects\init.o: .\LIB\SPL\inc\stm32f4xx_rng.h
32 | .\objects\init.o: .\LIB\SPL\inc\stm32f4xx_can.h
33 | .\objects\init.o: .\LIB\SPL\inc\stm32f4xx_dac.h
34 | .\objects\init.o: .\LIB\SPL\inc\stm32f4xx_dcmi.h
35 | .\objects\init.o: .\LIB\SPL\inc\stm32f4xx_fsmc.h
36 | .\objects\init.o: LIB\ini\init.h
37 |
--------------------------------------------------------------------------------
/Keil_Project/Objects/init.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Keil_Project/Objects/init.o
--------------------------------------------------------------------------------
/Keil_Project/Objects/main.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Keil_Project/Objects/main.crf
--------------------------------------------------------------------------------
/Keil_Project/Objects/main.d:
--------------------------------------------------------------------------------
1 | .\objects\main.o: main.c
2 | .\objects\main.o: .\LIB\stm32f4xx.h
3 | .\objects\main.o: C:\Keil_v5\ARM\PACK\ARM\CMSIS\5.0.1\CMSIS\Include\core_cm4.h
4 | .\objects\main.o: C:\Keil_v5\ARM\ARMCC\Bin\..\include\stdint.h
5 | .\objects\main.o: C:\Keil_v5\ARM\PACK\ARM\CMSIS\5.0.1\CMSIS\Include\cmsis_compiler.h
6 | .\objects\main.o: C:\Keil_v5\ARM\PACK\ARM\CMSIS\5.0.1\CMSIS\Include\cmsis_armcc.h
7 | .\objects\main.o: C:\Keil_v5\ARM\PACK\Keil\STM32F4xx_DFP\2.11.0\Drivers\CMSIS\Device\ST\STM32F4xx\Include\system_stm32f4xx.h
8 | .\objects\main.o: .\LIB\stm32f4xx_conf.h
9 | .\objects\main.o: .\LIB\SPL\inc\stm32f4xx_adc.h
10 | .\objects\main.o: .\LIB\stm32f4xx.h
11 | .\objects\main.o: .\LIB\SPL\inc\stm32f4xx_crc.h
12 | .\objects\main.o: .\LIB\SPL\inc\stm32f4xx_dbgmcu.h
13 | .\objects\main.o: .\LIB\SPL\inc\stm32f4xx_dma.h
14 | .\objects\main.o: .\LIB\SPL\inc\stm32f4xx_exti.h
15 | .\objects\main.o: .\LIB\SPL\inc\stm32f4xx_flash.h
16 | .\objects\main.o: .\LIB\SPL\inc\stm32f4xx_gpio.h
17 | .\objects\main.o: .\LIB\SPL\inc\stm32f4xx_i2c.h
18 | .\objects\main.o: .\LIB\SPL\inc\stm32f4xx_iwdg.h
19 | .\objects\main.o: .\LIB\SPL\inc\stm32f4xx_pwr.h
20 | .\objects\main.o: .\LIB\SPL\inc\stm32f4xx_rcc.h
21 | .\objects\main.o: .\LIB\SPL\inc\stm32f4xx_rtc.h
22 | .\objects\main.o: .\LIB\SPL\inc\stm32f4xx_sdio.h
23 | .\objects\main.o: .\LIB\SPL\inc\stm32f4xx_spi.h
24 | .\objects\main.o: .\LIB\SPL\inc\stm32f4xx_syscfg.h
25 | .\objects\main.o: .\LIB\SPL\inc\stm32f4xx_tim.h
26 | .\objects\main.o: .\LIB\SPL\inc\stm32f4xx_usart.h
27 | .\objects\main.o: .\LIB\SPL\inc\stm32f4xx_wwdg.h
28 | .\objects\main.o: .\LIB\SPL\inc\misc.h
29 | .\objects\main.o: .\LIB\SPL\inc\stm32f4xx_cryp.h
30 | .\objects\main.o: .\LIB\SPL\inc\stm32f4xx_hash.h
31 | .\objects\main.o: .\LIB\SPL\inc\stm32f4xx_rng.h
32 | .\objects\main.o: .\LIB\SPL\inc\stm32f4xx_can.h
33 | .\objects\main.o: .\LIB\SPL\inc\stm32f4xx_dac.h
34 | .\objects\main.o: .\LIB\SPL\inc\stm32f4xx_dcmi.h
35 | .\objects\main.o: .\LIB\SPL\inc\stm32f4xx_fsmc.h
36 | .\objects\main.o: .\LIB\as5048\as5048.h
37 | .\objects\main.o: C:\Keil_v5\ARM\ARMCC\Bin\..\include\math.h
38 | .\objects\main.o: C:\Keil_v5\ARM\PACK\ARM\CMSIS\5.0.1\CMSIS\Include\arm_math.h
39 | .\objects\main.o: C:\Keil_v5\ARM\PACK\ARM\CMSIS\5.0.1\CMSIS\Include\core_cm4.h
40 | .\objects\main.o: C:\Keil_v5\ARM\ARMCC\Bin\..\include\string.h
41 | .\objects\main.o: .\LIB\mylib.h
42 | .\objects\main.o: .\LIB\ini\init.h
43 | .\objects\main.o: .\LIB\motor\motor.h
44 | .\objects\main.o: C:\Keil_v5\ARM\ARMCC\Bin\..\include\stdio.h
45 |
--------------------------------------------------------------------------------
/Keil_Project/Objects/main.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Keil_Project/Objects/main.o
--------------------------------------------------------------------------------
/Keil_Project/Objects/misc.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Keil_Project/Objects/misc.crf
--------------------------------------------------------------------------------
/Keil_Project/Objects/misc.d:
--------------------------------------------------------------------------------
1 | .\objects\misc.o: LIB\SPL\src\misc.c
2 | .\objects\misc.o: .\LIB\SPL\inc\misc.h
3 | .\objects\misc.o: .\LIB\stm32f4xx.h
4 | .\objects\misc.o: C:\Keil_v5\ARM\PACK\ARM\CMSIS\5.0.1\CMSIS\Include\core_cm4.h
5 | .\objects\misc.o: C:\Keil_v5\ARM\ARMCC\Bin\..\include\stdint.h
6 | .\objects\misc.o: C:\Keil_v5\ARM\PACK\ARM\CMSIS\5.0.1\CMSIS\Include\cmsis_compiler.h
7 | .\objects\misc.o: C:\Keil_v5\ARM\PACK\ARM\CMSIS\5.0.1\CMSIS\Include\cmsis_armcc.h
8 | .\objects\misc.o: C:\Keil_v5\ARM\PACK\Keil\STM32F4xx_DFP\2.11.0\Drivers\CMSIS\Device\ST\STM32F4xx\Include\system_stm32f4xx.h
9 | .\objects\misc.o: .\LIB\stm32f4xx_conf.h
10 | .\objects\misc.o: .\LIB\SPL\inc\stm32f4xx_adc.h
11 | .\objects\misc.o: .\LIB\stm32f4xx.h
12 | .\objects\misc.o: .\LIB\SPL\inc\stm32f4xx_crc.h
13 | .\objects\misc.o: .\LIB\SPL\inc\stm32f4xx_dbgmcu.h
14 | .\objects\misc.o: .\LIB\SPL\inc\stm32f4xx_dma.h
15 | .\objects\misc.o: .\LIB\SPL\inc\stm32f4xx_exti.h
16 | .\objects\misc.o: .\LIB\SPL\inc\stm32f4xx_flash.h
17 | .\objects\misc.o: .\LIB\SPL\inc\stm32f4xx_gpio.h
18 | .\objects\misc.o: .\LIB\SPL\inc\stm32f4xx_i2c.h
19 | .\objects\misc.o: .\LIB\SPL\inc\stm32f4xx_iwdg.h
20 | .\objects\misc.o: .\LIB\SPL\inc\stm32f4xx_pwr.h
21 | .\objects\misc.o: .\LIB\SPL\inc\stm32f4xx_rcc.h
22 | .\objects\misc.o: .\LIB\SPL\inc\stm32f4xx_rtc.h
23 | .\objects\misc.o: .\LIB\SPL\inc\stm32f4xx_sdio.h
24 | .\objects\misc.o: .\LIB\SPL\inc\stm32f4xx_spi.h
25 | .\objects\misc.o: .\LIB\SPL\inc\stm32f4xx_syscfg.h
26 | .\objects\misc.o: .\LIB\SPL\inc\stm32f4xx_tim.h
27 | .\objects\misc.o: .\LIB\SPL\inc\stm32f4xx_usart.h
28 | .\objects\misc.o: .\LIB\SPL\inc\stm32f4xx_wwdg.h
29 | .\objects\misc.o: .\LIB\SPL\inc\misc.h
30 | .\objects\misc.o: .\LIB\SPL\inc\stm32f4xx_cryp.h
31 | .\objects\misc.o: .\LIB\SPL\inc\stm32f4xx_hash.h
32 | .\objects\misc.o: .\LIB\SPL\inc\stm32f4xx_rng.h
33 | .\objects\misc.o: .\LIB\SPL\inc\stm32f4xx_can.h
34 | .\objects\misc.o: .\LIB\SPL\inc\stm32f4xx_dac.h
35 | .\objects\misc.o: .\LIB\SPL\inc\stm32f4xx_dcmi.h
36 | .\objects\misc.o: .\LIB\SPL\inc\stm32f4xx_fsmc.h
37 |
--------------------------------------------------------------------------------
/Keil_Project/Objects/misc.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Keil_Project/Objects/misc.o
--------------------------------------------------------------------------------
/Keil_Project/Objects/motor.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Keil_Project/Objects/motor.crf
--------------------------------------------------------------------------------
/Keil_Project/Objects/motor.d:
--------------------------------------------------------------------------------
1 | .\objects\motor.o: LIB\motor\motor.c
2 | .\objects\motor.o: LIB\motor\motor.h
3 | .\objects\motor.o: .\LIB\stm32f4xx.h
4 | .\objects\motor.o: C:\Keil_v5\ARM\PACK\ARM\CMSIS\5.0.1\CMSIS\Include\core_cm4.h
5 | .\objects\motor.o: C:\Keil_v5\ARM\ARMCC\Bin\..\include\stdint.h
6 | .\objects\motor.o: C:\Keil_v5\ARM\PACK\ARM\CMSIS\5.0.1\CMSIS\Include\cmsis_compiler.h
7 | .\objects\motor.o: C:\Keil_v5\ARM\PACK\ARM\CMSIS\5.0.1\CMSIS\Include\cmsis_armcc.h
8 | .\objects\motor.o: C:\Keil_v5\ARM\PACK\Keil\STM32F4xx_DFP\2.11.0\Drivers\CMSIS\Device\ST\STM32F4xx\Include\system_stm32f4xx.h
9 | .\objects\motor.o: .\LIB\stm32f4xx_conf.h
10 | .\objects\motor.o: .\LIB\SPL\inc\stm32f4xx_adc.h
11 | .\objects\motor.o: .\LIB\stm32f4xx.h
12 | .\objects\motor.o: .\LIB\SPL\inc\stm32f4xx_crc.h
13 | .\objects\motor.o: .\LIB\SPL\inc\stm32f4xx_dbgmcu.h
14 | .\objects\motor.o: .\LIB\SPL\inc\stm32f4xx_dma.h
15 | .\objects\motor.o: .\LIB\SPL\inc\stm32f4xx_exti.h
16 | .\objects\motor.o: .\LIB\SPL\inc\stm32f4xx_flash.h
17 | .\objects\motor.o: .\LIB\SPL\inc\stm32f4xx_gpio.h
18 | .\objects\motor.o: .\LIB\SPL\inc\stm32f4xx_i2c.h
19 | .\objects\motor.o: .\LIB\SPL\inc\stm32f4xx_iwdg.h
20 | .\objects\motor.o: .\LIB\SPL\inc\stm32f4xx_pwr.h
21 | .\objects\motor.o: .\LIB\SPL\inc\stm32f4xx_rcc.h
22 | .\objects\motor.o: .\LIB\SPL\inc\stm32f4xx_rtc.h
23 | .\objects\motor.o: .\LIB\SPL\inc\stm32f4xx_sdio.h
24 | .\objects\motor.o: .\LIB\SPL\inc\stm32f4xx_spi.h
25 | .\objects\motor.o: .\LIB\SPL\inc\stm32f4xx_syscfg.h
26 | .\objects\motor.o: .\LIB\SPL\inc\stm32f4xx_tim.h
27 | .\objects\motor.o: .\LIB\SPL\inc\stm32f4xx_usart.h
28 | .\objects\motor.o: .\LIB\SPL\inc\stm32f4xx_wwdg.h
29 | .\objects\motor.o: .\LIB\SPL\inc\misc.h
30 | .\objects\motor.o: .\LIB\SPL\inc\stm32f4xx_cryp.h
31 | .\objects\motor.o: .\LIB\SPL\inc\stm32f4xx_hash.h
32 | .\objects\motor.o: .\LIB\SPL\inc\stm32f4xx_rng.h
33 | .\objects\motor.o: .\LIB\SPL\inc\stm32f4xx_can.h
34 | .\objects\motor.o: .\LIB\SPL\inc\stm32f4xx_dac.h
35 | .\objects\motor.o: .\LIB\SPL\inc\stm32f4xx_dcmi.h
36 | .\objects\motor.o: .\LIB\SPL\inc\stm32f4xx_fsmc.h
37 | .\objects\motor.o: .\LIB\ini\init.h
38 | .\objects\motor.o: C:\Keil_v5\ARM\PACK\ARM\CMSIS\5.0.1\CMSIS\Include\arm_math.h
39 | .\objects\motor.o: C:\Keil_v5\ARM\PACK\ARM\CMSIS\5.0.1\CMSIS\Include\core_cm4.h
40 | .\objects\motor.o: C:\Keil_v5\ARM\ARMCC\Bin\..\include\string.h
41 | .\objects\motor.o: C:\Keil_v5\ARM\ARMCC\Bin\..\include\math.h
42 | .\objects\motor.o: .\LIB\as5048\as5048.h
43 | .\objects\motor.o: .\LIB\mylib.h
44 |
--------------------------------------------------------------------------------
/Keil_Project/Objects/motor.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Keil_Project/Objects/motor.o
--------------------------------------------------------------------------------
/Keil_Project/Objects/mylib.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Keil_Project/Objects/mylib.crf
--------------------------------------------------------------------------------
/Keil_Project/Objects/mylib.d:
--------------------------------------------------------------------------------
1 | .\objects\mylib.o: LIB\mylib.c
2 | .\objects\mylib.o: LIB\stm32f4xx.h
3 | .\objects\mylib.o: C:\Keil_v5\ARM\PACK\ARM\CMSIS\5.0.1\CMSIS\Include\core_cm4.h
4 | .\objects\mylib.o: C:\Keil_v5\ARM\ARMCC\Bin\..\include\stdint.h
5 | .\objects\mylib.o: C:\Keil_v5\ARM\PACK\ARM\CMSIS\5.0.1\CMSIS\Include\cmsis_compiler.h
6 | .\objects\mylib.o: C:\Keil_v5\ARM\PACK\ARM\CMSIS\5.0.1\CMSIS\Include\cmsis_armcc.h
7 | .\objects\mylib.o: C:\Keil_v5\ARM\PACK\Keil\STM32F4xx_DFP\2.11.0\Drivers\CMSIS\Device\ST\STM32F4xx\Include\system_stm32f4xx.h
8 | .\objects\mylib.o: LIB\stm32f4xx_conf.h
9 | .\objects\mylib.o: .\LIB\SPL\inc\stm32f4xx_adc.h
10 | .\objects\mylib.o: .\LIB\stm32f4xx.h
11 | .\objects\mylib.o: .\LIB\SPL\inc\stm32f4xx_crc.h
12 | .\objects\mylib.o: .\LIB\SPL\inc\stm32f4xx_dbgmcu.h
13 | .\objects\mylib.o: .\LIB\SPL\inc\stm32f4xx_dma.h
14 | .\objects\mylib.o: .\LIB\SPL\inc\stm32f4xx_exti.h
15 | .\objects\mylib.o: .\LIB\SPL\inc\stm32f4xx_flash.h
16 | .\objects\mylib.o: .\LIB\SPL\inc\stm32f4xx_gpio.h
17 | .\objects\mylib.o: .\LIB\SPL\inc\stm32f4xx_i2c.h
18 | .\objects\mylib.o: .\LIB\SPL\inc\stm32f4xx_iwdg.h
19 | .\objects\mylib.o: .\LIB\SPL\inc\stm32f4xx_pwr.h
20 | .\objects\mylib.o: .\LIB\SPL\inc\stm32f4xx_rcc.h
21 | .\objects\mylib.o: .\LIB\SPL\inc\stm32f4xx_rtc.h
22 | .\objects\mylib.o: .\LIB\SPL\inc\stm32f4xx_sdio.h
23 | .\objects\mylib.o: .\LIB\SPL\inc\stm32f4xx_spi.h
24 | .\objects\mylib.o: .\LIB\SPL\inc\stm32f4xx_syscfg.h
25 | .\objects\mylib.o: .\LIB\SPL\inc\stm32f4xx_tim.h
26 | .\objects\mylib.o: .\LIB\SPL\inc\stm32f4xx_usart.h
27 | .\objects\mylib.o: .\LIB\SPL\inc\stm32f4xx_wwdg.h
28 | .\objects\mylib.o: .\LIB\SPL\inc\misc.h
29 | .\objects\mylib.o: .\LIB\SPL\inc\stm32f4xx_cryp.h
30 | .\objects\mylib.o: .\LIB\SPL\inc\stm32f4xx_hash.h
31 | .\objects\mylib.o: .\LIB\SPL\inc\stm32f4xx_rng.h
32 | .\objects\mylib.o: .\LIB\SPL\inc\stm32f4xx_can.h
33 | .\objects\mylib.o: .\LIB\SPL\inc\stm32f4xx_dac.h
34 | .\objects\mylib.o: .\LIB\SPL\inc\stm32f4xx_dcmi.h
35 | .\objects\mylib.o: .\LIB\SPL\inc\stm32f4xx_fsmc.h
36 | .\objects\mylib.o: LIB\mylib.h
37 |
--------------------------------------------------------------------------------
/Keil_Project/Objects/mylib.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Keil_Project/Objects/mylib.o
--------------------------------------------------------------------------------
/Keil_Project/Objects/startup_stm32f407xx.d:
--------------------------------------------------------------------------------
1 | .\objects\startup_stm32f407xx.o: RTE\Device\STM32F407VGTx\startup_stm32f407xx.s
2 |
--------------------------------------------------------------------------------
/Keil_Project/Objects/startup_stm32f407xx.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Keil_Project/Objects/startup_stm32f407xx.o
--------------------------------------------------------------------------------
/Keil_Project/Objects/stm32f4xx_adc.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Keil_Project/Objects/stm32f4xx_adc.crf
--------------------------------------------------------------------------------
/Keil_Project/Objects/stm32f4xx_adc.d:
--------------------------------------------------------------------------------
1 | .\objects\stm32f4xx_adc.o: LIB\SPL\src\stm32f4xx_adc.c
2 | .\objects\stm32f4xx_adc.o: .\LIB\SPL\inc\stm32f4xx_adc.h
3 | .\objects\stm32f4xx_adc.o: .\LIB\stm32f4xx.h
4 | .\objects\stm32f4xx_adc.o: C:\Keil_v5\ARM\PACK\ARM\CMSIS\5.0.1\CMSIS\Include\core_cm4.h
5 | .\objects\stm32f4xx_adc.o: C:\Keil_v5\ARM\ARMCC\Bin\..\include\stdint.h
6 | .\objects\stm32f4xx_adc.o: C:\Keil_v5\ARM\PACK\ARM\CMSIS\5.0.1\CMSIS\Include\cmsis_compiler.h
7 | .\objects\stm32f4xx_adc.o: C:\Keil_v5\ARM\PACK\ARM\CMSIS\5.0.1\CMSIS\Include\cmsis_armcc.h
8 | .\objects\stm32f4xx_adc.o: C:\Keil_v5\ARM\PACK\Keil\STM32F4xx_DFP\2.11.0\Drivers\CMSIS\Device\ST\STM32F4xx\Include\system_stm32f4xx.h
9 | .\objects\stm32f4xx_adc.o: .\LIB\stm32f4xx_conf.h
10 | .\objects\stm32f4xx_adc.o: .\LIB\SPL\inc\stm32f4xx_adc.h
11 | .\objects\stm32f4xx_adc.o: .\LIB\SPL\inc\stm32f4xx_crc.h
12 | .\objects\stm32f4xx_adc.o: .\LIB\stm32f4xx.h
13 | .\objects\stm32f4xx_adc.o: .\LIB\SPL\inc\stm32f4xx_dbgmcu.h
14 | .\objects\stm32f4xx_adc.o: .\LIB\SPL\inc\stm32f4xx_dma.h
15 | .\objects\stm32f4xx_adc.o: .\LIB\SPL\inc\stm32f4xx_exti.h
16 | .\objects\stm32f4xx_adc.o: .\LIB\SPL\inc\stm32f4xx_flash.h
17 | .\objects\stm32f4xx_adc.o: .\LIB\SPL\inc\stm32f4xx_gpio.h
18 | .\objects\stm32f4xx_adc.o: .\LIB\SPL\inc\stm32f4xx_i2c.h
19 | .\objects\stm32f4xx_adc.o: .\LIB\SPL\inc\stm32f4xx_iwdg.h
20 | .\objects\stm32f4xx_adc.o: .\LIB\SPL\inc\stm32f4xx_pwr.h
21 | .\objects\stm32f4xx_adc.o: .\LIB\SPL\inc\stm32f4xx_rcc.h
22 | .\objects\stm32f4xx_adc.o: .\LIB\SPL\inc\stm32f4xx_rtc.h
23 | .\objects\stm32f4xx_adc.o: .\LIB\SPL\inc\stm32f4xx_sdio.h
24 | .\objects\stm32f4xx_adc.o: .\LIB\SPL\inc\stm32f4xx_spi.h
25 | .\objects\stm32f4xx_adc.o: .\LIB\SPL\inc\stm32f4xx_syscfg.h
26 | .\objects\stm32f4xx_adc.o: .\LIB\SPL\inc\stm32f4xx_tim.h
27 | .\objects\stm32f4xx_adc.o: .\LIB\SPL\inc\stm32f4xx_usart.h
28 | .\objects\stm32f4xx_adc.o: .\LIB\SPL\inc\stm32f4xx_wwdg.h
29 | .\objects\stm32f4xx_adc.o: .\LIB\SPL\inc\misc.h
30 | .\objects\stm32f4xx_adc.o: .\LIB\SPL\inc\stm32f4xx_cryp.h
31 | .\objects\stm32f4xx_adc.o: .\LIB\SPL\inc\stm32f4xx_hash.h
32 | .\objects\stm32f4xx_adc.o: .\LIB\SPL\inc\stm32f4xx_rng.h
33 | .\objects\stm32f4xx_adc.o: .\LIB\SPL\inc\stm32f4xx_can.h
34 | .\objects\stm32f4xx_adc.o: .\LIB\SPL\inc\stm32f4xx_dac.h
35 | .\objects\stm32f4xx_adc.o: .\LIB\SPL\inc\stm32f4xx_dcmi.h
36 | .\objects\stm32f4xx_adc.o: .\LIB\SPL\inc\stm32f4xx_fsmc.h
37 |
--------------------------------------------------------------------------------
/Keil_Project/Objects/stm32f4xx_adc.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Keil_Project/Objects/stm32f4xx_adc.o
--------------------------------------------------------------------------------
/Keil_Project/Objects/stm32f4xx_can.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Keil_Project/Objects/stm32f4xx_can.crf
--------------------------------------------------------------------------------
/Keil_Project/Objects/stm32f4xx_can.d:
--------------------------------------------------------------------------------
1 | .\objects\stm32f4xx_can.o: LIB\SPL\src\stm32f4xx_can.c
2 | .\objects\stm32f4xx_can.o: .\LIB\SPL\inc\stm32f4xx_can.h
3 | .\objects\stm32f4xx_can.o: .\LIB\stm32f4xx.h
4 | .\objects\stm32f4xx_can.o: C:\Keil_v5\ARM\PACK\ARM\CMSIS\5.0.1\CMSIS\Include\core_cm4.h
5 | .\objects\stm32f4xx_can.o: C:\Keil_v5\ARM\ARMCC\Bin\..\include\stdint.h
6 | .\objects\stm32f4xx_can.o: C:\Keil_v5\ARM\PACK\ARM\CMSIS\5.0.1\CMSIS\Include\cmsis_compiler.h
7 | .\objects\stm32f4xx_can.o: C:\Keil_v5\ARM\PACK\ARM\CMSIS\5.0.1\CMSIS\Include\cmsis_armcc.h
8 | .\objects\stm32f4xx_can.o: C:\Keil_v5\ARM\PACK\Keil\STM32F4xx_DFP\2.11.0\Drivers\CMSIS\Device\ST\STM32F4xx\Include\system_stm32f4xx.h
9 | .\objects\stm32f4xx_can.o: .\LIB\stm32f4xx_conf.h
10 | .\objects\stm32f4xx_can.o: .\LIB\SPL\inc\stm32f4xx_adc.h
11 | .\objects\stm32f4xx_can.o: .\LIB\stm32f4xx.h
12 | .\objects\stm32f4xx_can.o: .\LIB\SPL\inc\stm32f4xx_crc.h
13 | .\objects\stm32f4xx_can.o: .\LIB\SPL\inc\stm32f4xx_dbgmcu.h
14 | .\objects\stm32f4xx_can.o: .\LIB\SPL\inc\stm32f4xx_dma.h
15 | .\objects\stm32f4xx_can.o: .\LIB\SPL\inc\stm32f4xx_exti.h
16 | .\objects\stm32f4xx_can.o: .\LIB\SPL\inc\stm32f4xx_flash.h
17 | .\objects\stm32f4xx_can.o: .\LIB\SPL\inc\stm32f4xx_gpio.h
18 | .\objects\stm32f4xx_can.o: .\LIB\SPL\inc\stm32f4xx_i2c.h
19 | .\objects\stm32f4xx_can.o: .\LIB\SPL\inc\stm32f4xx_iwdg.h
20 | .\objects\stm32f4xx_can.o: .\LIB\SPL\inc\stm32f4xx_pwr.h
21 | .\objects\stm32f4xx_can.o: .\LIB\SPL\inc\stm32f4xx_rcc.h
22 | .\objects\stm32f4xx_can.o: .\LIB\SPL\inc\stm32f4xx_rtc.h
23 | .\objects\stm32f4xx_can.o: .\LIB\SPL\inc\stm32f4xx_sdio.h
24 | .\objects\stm32f4xx_can.o: .\LIB\SPL\inc\stm32f4xx_spi.h
25 | .\objects\stm32f4xx_can.o: .\LIB\SPL\inc\stm32f4xx_syscfg.h
26 | .\objects\stm32f4xx_can.o: .\LIB\SPL\inc\stm32f4xx_tim.h
27 | .\objects\stm32f4xx_can.o: .\LIB\SPL\inc\stm32f4xx_usart.h
28 | .\objects\stm32f4xx_can.o: .\LIB\SPL\inc\stm32f4xx_wwdg.h
29 | .\objects\stm32f4xx_can.o: .\LIB\SPL\inc\misc.h
30 | .\objects\stm32f4xx_can.o: .\LIB\SPL\inc\stm32f4xx_cryp.h
31 | .\objects\stm32f4xx_can.o: .\LIB\SPL\inc\stm32f4xx_hash.h
32 | .\objects\stm32f4xx_can.o: .\LIB\SPL\inc\stm32f4xx_rng.h
33 | .\objects\stm32f4xx_can.o: .\LIB\SPL\inc\stm32f4xx_can.h
34 | .\objects\stm32f4xx_can.o: .\LIB\SPL\inc\stm32f4xx_dac.h
35 | .\objects\stm32f4xx_can.o: .\LIB\SPL\inc\stm32f4xx_dcmi.h
36 | .\objects\stm32f4xx_can.o: .\LIB\SPL\inc\stm32f4xx_fsmc.h
37 |
--------------------------------------------------------------------------------
/Keil_Project/Objects/stm32f4xx_can.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Keil_Project/Objects/stm32f4xx_can.o
--------------------------------------------------------------------------------
/Keil_Project/Objects/stm32f4xx_cec.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Keil_Project/Objects/stm32f4xx_cec.crf
--------------------------------------------------------------------------------
/Keil_Project/Objects/stm32f4xx_cec.d:
--------------------------------------------------------------------------------
1 | .\objects\stm32f4xx_cec.o: LIB\SPL\src\stm32f4xx_cec.c
2 | .\objects\stm32f4xx_cec.o: .\LIB\SPL\inc\stm32f4xx_cec.h
3 | .\objects\stm32f4xx_cec.o: .\LIB\stm32f4xx.h
4 | .\objects\stm32f4xx_cec.o: C:\Keil_v5\ARM\PACK\ARM\CMSIS\5.0.1\CMSIS\Include\core_cm4.h
5 | .\objects\stm32f4xx_cec.o: C:\Keil_v5\ARM\ARMCC\Bin\..\include\stdint.h
6 | .\objects\stm32f4xx_cec.o: C:\Keil_v5\ARM\PACK\ARM\CMSIS\5.0.1\CMSIS\Include\cmsis_compiler.h
7 | .\objects\stm32f4xx_cec.o: C:\Keil_v5\ARM\PACK\ARM\CMSIS\5.0.1\CMSIS\Include\cmsis_armcc.h
8 | .\objects\stm32f4xx_cec.o: C:\Keil_v5\ARM\PACK\Keil\STM32F4xx_DFP\2.11.0\Drivers\CMSIS\Device\ST\STM32F4xx\Include\system_stm32f4xx.h
9 | .\objects\stm32f4xx_cec.o: .\LIB\stm32f4xx_conf.h
10 | .\objects\stm32f4xx_cec.o: .\LIB\SPL\inc\stm32f4xx_adc.h
11 | .\objects\stm32f4xx_cec.o: .\LIB\stm32f4xx.h
12 | .\objects\stm32f4xx_cec.o: .\LIB\SPL\inc\stm32f4xx_crc.h
13 | .\objects\stm32f4xx_cec.o: .\LIB\SPL\inc\stm32f4xx_dbgmcu.h
14 | .\objects\stm32f4xx_cec.o: .\LIB\SPL\inc\stm32f4xx_dma.h
15 | .\objects\stm32f4xx_cec.o: .\LIB\SPL\inc\stm32f4xx_exti.h
16 | .\objects\stm32f4xx_cec.o: .\LIB\SPL\inc\stm32f4xx_flash.h
17 | .\objects\stm32f4xx_cec.o: .\LIB\SPL\inc\stm32f4xx_gpio.h
18 | .\objects\stm32f4xx_cec.o: .\LIB\SPL\inc\stm32f4xx_i2c.h
19 | .\objects\stm32f4xx_cec.o: .\LIB\SPL\inc\stm32f4xx_iwdg.h
20 | .\objects\stm32f4xx_cec.o: .\LIB\SPL\inc\stm32f4xx_pwr.h
21 | .\objects\stm32f4xx_cec.o: .\LIB\SPL\inc\stm32f4xx_rcc.h
22 | .\objects\stm32f4xx_cec.o: .\LIB\SPL\inc\stm32f4xx_rtc.h
23 | .\objects\stm32f4xx_cec.o: .\LIB\SPL\inc\stm32f4xx_sdio.h
24 | .\objects\stm32f4xx_cec.o: .\LIB\SPL\inc\stm32f4xx_spi.h
25 | .\objects\stm32f4xx_cec.o: .\LIB\SPL\inc\stm32f4xx_syscfg.h
26 | .\objects\stm32f4xx_cec.o: .\LIB\SPL\inc\stm32f4xx_tim.h
27 | .\objects\stm32f4xx_cec.o: .\LIB\SPL\inc\stm32f4xx_usart.h
28 | .\objects\stm32f4xx_cec.o: .\LIB\SPL\inc\stm32f4xx_wwdg.h
29 | .\objects\stm32f4xx_cec.o: .\LIB\SPL\inc\misc.h
30 | .\objects\stm32f4xx_cec.o: .\LIB\SPL\inc\stm32f4xx_cryp.h
31 | .\objects\stm32f4xx_cec.o: .\LIB\SPL\inc\stm32f4xx_hash.h
32 | .\objects\stm32f4xx_cec.o: .\LIB\SPL\inc\stm32f4xx_rng.h
33 | .\objects\stm32f4xx_cec.o: .\LIB\SPL\inc\stm32f4xx_can.h
34 | .\objects\stm32f4xx_cec.o: .\LIB\SPL\inc\stm32f4xx_dac.h
35 | .\objects\stm32f4xx_cec.o: .\LIB\SPL\inc\stm32f4xx_dcmi.h
36 | .\objects\stm32f4xx_cec.o: .\LIB\SPL\inc\stm32f4xx_fsmc.h
37 |
--------------------------------------------------------------------------------
/Keil_Project/Objects/stm32f4xx_cec.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Keil_Project/Objects/stm32f4xx_cec.o
--------------------------------------------------------------------------------
/Keil_Project/Objects/stm32f4xx_crc.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Keil_Project/Objects/stm32f4xx_crc.crf
--------------------------------------------------------------------------------
/Keil_Project/Objects/stm32f4xx_crc.d:
--------------------------------------------------------------------------------
1 | .\objects\stm32f4xx_crc.o: LIB\SPL\src\stm32f4xx_crc.c
2 | .\objects\stm32f4xx_crc.o: .\LIB\SPL\inc\stm32f4xx_crc.h
3 | .\objects\stm32f4xx_crc.o: .\LIB\stm32f4xx.h
4 | .\objects\stm32f4xx_crc.o: C:\Keil_v5\ARM\PACK\ARM\CMSIS\5.0.1\CMSIS\Include\core_cm4.h
5 | .\objects\stm32f4xx_crc.o: C:\Keil_v5\ARM\ARMCC\Bin\..\include\stdint.h
6 | .\objects\stm32f4xx_crc.o: C:\Keil_v5\ARM\PACK\ARM\CMSIS\5.0.1\CMSIS\Include\cmsis_compiler.h
7 | .\objects\stm32f4xx_crc.o: C:\Keil_v5\ARM\PACK\ARM\CMSIS\5.0.1\CMSIS\Include\cmsis_armcc.h
8 | .\objects\stm32f4xx_crc.o: C:\Keil_v5\ARM\PACK\Keil\STM32F4xx_DFP\2.11.0\Drivers\CMSIS\Device\ST\STM32F4xx\Include\system_stm32f4xx.h
9 | .\objects\stm32f4xx_crc.o: .\LIB\stm32f4xx_conf.h
10 | .\objects\stm32f4xx_crc.o: .\LIB\SPL\inc\stm32f4xx_adc.h
11 | .\objects\stm32f4xx_crc.o: .\LIB\stm32f4xx.h
12 | .\objects\stm32f4xx_crc.o: .\LIB\SPL\inc\stm32f4xx_crc.h
13 | .\objects\stm32f4xx_crc.o: .\LIB\SPL\inc\stm32f4xx_dbgmcu.h
14 | .\objects\stm32f4xx_crc.o: .\LIB\SPL\inc\stm32f4xx_dma.h
15 | .\objects\stm32f4xx_crc.o: .\LIB\SPL\inc\stm32f4xx_exti.h
16 | .\objects\stm32f4xx_crc.o: .\LIB\SPL\inc\stm32f4xx_flash.h
17 | .\objects\stm32f4xx_crc.o: .\LIB\SPL\inc\stm32f4xx_gpio.h
18 | .\objects\stm32f4xx_crc.o: .\LIB\SPL\inc\stm32f4xx_i2c.h
19 | .\objects\stm32f4xx_crc.o: .\LIB\SPL\inc\stm32f4xx_iwdg.h
20 | .\objects\stm32f4xx_crc.o: .\LIB\SPL\inc\stm32f4xx_pwr.h
21 | .\objects\stm32f4xx_crc.o: .\LIB\SPL\inc\stm32f4xx_rcc.h
22 | .\objects\stm32f4xx_crc.o: .\LIB\SPL\inc\stm32f4xx_rtc.h
23 | .\objects\stm32f4xx_crc.o: .\LIB\SPL\inc\stm32f4xx_sdio.h
24 | .\objects\stm32f4xx_crc.o: .\LIB\SPL\inc\stm32f4xx_spi.h
25 | .\objects\stm32f4xx_crc.o: .\LIB\SPL\inc\stm32f4xx_syscfg.h
26 | .\objects\stm32f4xx_crc.o: .\LIB\SPL\inc\stm32f4xx_tim.h
27 | .\objects\stm32f4xx_crc.o: .\LIB\SPL\inc\stm32f4xx_usart.h
28 | .\objects\stm32f4xx_crc.o: .\LIB\SPL\inc\stm32f4xx_wwdg.h
29 | .\objects\stm32f4xx_crc.o: .\LIB\SPL\inc\misc.h
30 | .\objects\stm32f4xx_crc.o: .\LIB\SPL\inc\stm32f4xx_cryp.h
31 | .\objects\stm32f4xx_crc.o: .\LIB\SPL\inc\stm32f4xx_hash.h
32 | .\objects\stm32f4xx_crc.o: .\LIB\SPL\inc\stm32f4xx_rng.h
33 | .\objects\stm32f4xx_crc.o: .\LIB\SPL\inc\stm32f4xx_can.h
34 | .\objects\stm32f4xx_crc.o: .\LIB\SPL\inc\stm32f4xx_dac.h
35 | .\objects\stm32f4xx_crc.o: .\LIB\SPL\inc\stm32f4xx_dcmi.h
36 | .\objects\stm32f4xx_crc.o: .\LIB\SPL\inc\stm32f4xx_fsmc.h
37 |
--------------------------------------------------------------------------------
/Keil_Project/Objects/stm32f4xx_crc.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Keil_Project/Objects/stm32f4xx_crc.o
--------------------------------------------------------------------------------
/Keil_Project/Objects/stm32f4xx_cryp.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Keil_Project/Objects/stm32f4xx_cryp.crf
--------------------------------------------------------------------------------
/Keil_Project/Objects/stm32f4xx_cryp.d:
--------------------------------------------------------------------------------
1 | .\objects\stm32f4xx_cryp.o: LIB\SPL\src\stm32f4xx_cryp.c
2 | .\objects\stm32f4xx_cryp.o: .\LIB\SPL\inc\stm32f4xx_cryp.h
3 | .\objects\stm32f4xx_cryp.o: .\LIB\stm32f4xx.h
4 | .\objects\stm32f4xx_cryp.o: C:\Keil_v5\ARM\PACK\ARM\CMSIS\5.0.1\CMSIS\Include\core_cm4.h
5 | .\objects\stm32f4xx_cryp.o: C:\Keil_v5\ARM\ARMCC\Bin\..\include\stdint.h
6 | .\objects\stm32f4xx_cryp.o: C:\Keil_v5\ARM\PACK\ARM\CMSIS\5.0.1\CMSIS\Include\cmsis_compiler.h
7 | .\objects\stm32f4xx_cryp.o: C:\Keil_v5\ARM\PACK\ARM\CMSIS\5.0.1\CMSIS\Include\cmsis_armcc.h
8 | .\objects\stm32f4xx_cryp.o: C:\Keil_v5\ARM\PACK\Keil\STM32F4xx_DFP\2.11.0\Drivers\CMSIS\Device\ST\STM32F4xx\Include\system_stm32f4xx.h
9 | .\objects\stm32f4xx_cryp.o: .\LIB\stm32f4xx_conf.h
10 | .\objects\stm32f4xx_cryp.o: .\LIB\SPL\inc\stm32f4xx_adc.h
11 | .\objects\stm32f4xx_cryp.o: .\LIB\stm32f4xx.h
12 | .\objects\stm32f4xx_cryp.o: .\LIB\SPL\inc\stm32f4xx_crc.h
13 | .\objects\stm32f4xx_cryp.o: .\LIB\SPL\inc\stm32f4xx_dbgmcu.h
14 | .\objects\stm32f4xx_cryp.o: .\LIB\SPL\inc\stm32f4xx_dma.h
15 | .\objects\stm32f4xx_cryp.o: .\LIB\SPL\inc\stm32f4xx_exti.h
16 | .\objects\stm32f4xx_cryp.o: .\LIB\SPL\inc\stm32f4xx_flash.h
17 | .\objects\stm32f4xx_cryp.o: .\LIB\SPL\inc\stm32f4xx_gpio.h
18 | .\objects\stm32f4xx_cryp.o: .\LIB\SPL\inc\stm32f4xx_i2c.h
19 | .\objects\stm32f4xx_cryp.o: .\LIB\SPL\inc\stm32f4xx_iwdg.h
20 | .\objects\stm32f4xx_cryp.o: .\LIB\SPL\inc\stm32f4xx_pwr.h
21 | .\objects\stm32f4xx_cryp.o: .\LIB\SPL\inc\stm32f4xx_rcc.h
22 | .\objects\stm32f4xx_cryp.o: .\LIB\SPL\inc\stm32f4xx_rtc.h
23 | .\objects\stm32f4xx_cryp.o: .\LIB\SPL\inc\stm32f4xx_sdio.h
24 | .\objects\stm32f4xx_cryp.o: .\LIB\SPL\inc\stm32f4xx_spi.h
25 | .\objects\stm32f4xx_cryp.o: .\LIB\SPL\inc\stm32f4xx_syscfg.h
26 | .\objects\stm32f4xx_cryp.o: .\LIB\SPL\inc\stm32f4xx_tim.h
27 | .\objects\stm32f4xx_cryp.o: .\LIB\SPL\inc\stm32f4xx_usart.h
28 | .\objects\stm32f4xx_cryp.o: .\LIB\SPL\inc\stm32f4xx_wwdg.h
29 | .\objects\stm32f4xx_cryp.o: .\LIB\SPL\inc\misc.h
30 | .\objects\stm32f4xx_cryp.o: .\LIB\SPL\inc\stm32f4xx_cryp.h
31 | .\objects\stm32f4xx_cryp.o: .\LIB\SPL\inc\stm32f4xx_hash.h
32 | .\objects\stm32f4xx_cryp.o: .\LIB\SPL\inc\stm32f4xx_rng.h
33 | .\objects\stm32f4xx_cryp.o: .\LIB\SPL\inc\stm32f4xx_can.h
34 | .\objects\stm32f4xx_cryp.o: .\LIB\SPL\inc\stm32f4xx_dac.h
35 | .\objects\stm32f4xx_cryp.o: .\LIB\SPL\inc\stm32f4xx_dcmi.h
36 | .\objects\stm32f4xx_cryp.o: .\LIB\SPL\inc\stm32f4xx_fsmc.h
37 |
--------------------------------------------------------------------------------
/Keil_Project/Objects/stm32f4xx_cryp.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Keil_Project/Objects/stm32f4xx_cryp.o
--------------------------------------------------------------------------------
/Keil_Project/Objects/stm32f4xx_cryp_aes.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Keil_Project/Objects/stm32f4xx_cryp_aes.crf
--------------------------------------------------------------------------------
/Keil_Project/Objects/stm32f4xx_cryp_aes.d:
--------------------------------------------------------------------------------
1 | .\objects\stm32f4xx_cryp_aes.o: LIB\SPL\src\stm32f4xx_cryp_aes.c
2 | .\objects\stm32f4xx_cryp_aes.o: .\LIB\SPL\inc\stm32f4xx_cryp.h
3 | .\objects\stm32f4xx_cryp_aes.o: .\LIB\stm32f4xx.h
4 | .\objects\stm32f4xx_cryp_aes.o: C:\Keil_v5\ARM\PACK\ARM\CMSIS\5.0.1\CMSIS\Include\core_cm4.h
5 | .\objects\stm32f4xx_cryp_aes.o: C:\Keil_v5\ARM\ARMCC\Bin\..\include\stdint.h
6 | .\objects\stm32f4xx_cryp_aes.o: C:\Keil_v5\ARM\PACK\ARM\CMSIS\5.0.1\CMSIS\Include\cmsis_compiler.h
7 | .\objects\stm32f4xx_cryp_aes.o: C:\Keil_v5\ARM\PACK\ARM\CMSIS\5.0.1\CMSIS\Include\cmsis_armcc.h
8 | .\objects\stm32f4xx_cryp_aes.o: C:\Keil_v5\ARM\PACK\Keil\STM32F4xx_DFP\2.11.0\Drivers\CMSIS\Device\ST\STM32F4xx\Include\system_stm32f4xx.h
9 | .\objects\stm32f4xx_cryp_aes.o: .\LIB\stm32f4xx_conf.h
10 | .\objects\stm32f4xx_cryp_aes.o: .\LIB\SPL\inc\stm32f4xx_adc.h
11 | .\objects\stm32f4xx_cryp_aes.o: .\LIB\stm32f4xx.h
12 | .\objects\stm32f4xx_cryp_aes.o: .\LIB\SPL\inc\stm32f4xx_crc.h
13 | .\objects\stm32f4xx_cryp_aes.o: .\LIB\SPL\inc\stm32f4xx_dbgmcu.h
14 | .\objects\stm32f4xx_cryp_aes.o: .\LIB\SPL\inc\stm32f4xx_dma.h
15 | .\objects\stm32f4xx_cryp_aes.o: .\LIB\SPL\inc\stm32f4xx_exti.h
16 | .\objects\stm32f4xx_cryp_aes.o: .\LIB\SPL\inc\stm32f4xx_flash.h
17 | .\objects\stm32f4xx_cryp_aes.o: .\LIB\SPL\inc\stm32f4xx_gpio.h
18 | .\objects\stm32f4xx_cryp_aes.o: .\LIB\SPL\inc\stm32f4xx_i2c.h
19 | .\objects\stm32f4xx_cryp_aes.o: .\LIB\SPL\inc\stm32f4xx_iwdg.h
20 | .\objects\stm32f4xx_cryp_aes.o: .\LIB\SPL\inc\stm32f4xx_pwr.h
21 | .\objects\stm32f4xx_cryp_aes.o: .\LIB\SPL\inc\stm32f4xx_rcc.h
22 | .\objects\stm32f4xx_cryp_aes.o: .\LIB\SPL\inc\stm32f4xx_rtc.h
23 | .\objects\stm32f4xx_cryp_aes.o: .\LIB\SPL\inc\stm32f4xx_sdio.h
24 | .\objects\stm32f4xx_cryp_aes.o: .\LIB\SPL\inc\stm32f4xx_spi.h
25 | .\objects\stm32f4xx_cryp_aes.o: .\LIB\SPL\inc\stm32f4xx_syscfg.h
26 | .\objects\stm32f4xx_cryp_aes.o: .\LIB\SPL\inc\stm32f4xx_tim.h
27 | .\objects\stm32f4xx_cryp_aes.o: .\LIB\SPL\inc\stm32f4xx_usart.h
28 | .\objects\stm32f4xx_cryp_aes.o: .\LIB\SPL\inc\stm32f4xx_wwdg.h
29 | .\objects\stm32f4xx_cryp_aes.o: .\LIB\SPL\inc\misc.h
30 | .\objects\stm32f4xx_cryp_aes.o: .\LIB\SPL\inc\stm32f4xx_cryp.h
31 | .\objects\stm32f4xx_cryp_aes.o: .\LIB\SPL\inc\stm32f4xx_hash.h
32 | .\objects\stm32f4xx_cryp_aes.o: .\LIB\SPL\inc\stm32f4xx_rng.h
33 | .\objects\stm32f4xx_cryp_aes.o: .\LIB\SPL\inc\stm32f4xx_can.h
34 | .\objects\stm32f4xx_cryp_aes.o: .\LIB\SPL\inc\stm32f4xx_dac.h
35 | .\objects\stm32f4xx_cryp_aes.o: .\LIB\SPL\inc\stm32f4xx_dcmi.h
36 | .\objects\stm32f4xx_cryp_aes.o: .\LIB\SPL\inc\stm32f4xx_fsmc.h
37 |
--------------------------------------------------------------------------------
/Keil_Project/Objects/stm32f4xx_cryp_aes.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Keil_Project/Objects/stm32f4xx_cryp_aes.o
--------------------------------------------------------------------------------
/Keil_Project/Objects/stm32f4xx_cryp_des.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Keil_Project/Objects/stm32f4xx_cryp_des.crf
--------------------------------------------------------------------------------
/Keil_Project/Objects/stm32f4xx_cryp_des.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Keil_Project/Objects/stm32f4xx_cryp_des.o
--------------------------------------------------------------------------------
/Keil_Project/Objects/stm32f4xx_cryp_tdes.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Keil_Project/Objects/stm32f4xx_cryp_tdes.crf
--------------------------------------------------------------------------------
/Keil_Project/Objects/stm32f4xx_cryp_tdes.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Keil_Project/Objects/stm32f4xx_cryp_tdes.o
--------------------------------------------------------------------------------
/Keil_Project/Objects/stm32f4xx_dac.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Keil_Project/Objects/stm32f4xx_dac.crf
--------------------------------------------------------------------------------
/Keil_Project/Objects/stm32f4xx_dac.d:
--------------------------------------------------------------------------------
1 | .\objects\stm32f4xx_dac.o: LIB\SPL\src\stm32f4xx_dac.c
2 | .\objects\stm32f4xx_dac.o: .\LIB\SPL\inc\stm32f4xx_dac.h
3 | .\objects\stm32f4xx_dac.o: .\LIB\stm32f4xx.h
4 | .\objects\stm32f4xx_dac.o: C:\Keil_v5\ARM\PACK\ARM\CMSIS\5.0.1\CMSIS\Include\core_cm4.h
5 | .\objects\stm32f4xx_dac.o: C:\Keil_v5\ARM\ARMCC\Bin\..\include\stdint.h
6 | .\objects\stm32f4xx_dac.o: C:\Keil_v5\ARM\PACK\ARM\CMSIS\5.0.1\CMSIS\Include\cmsis_compiler.h
7 | .\objects\stm32f4xx_dac.o: C:\Keil_v5\ARM\PACK\ARM\CMSIS\5.0.1\CMSIS\Include\cmsis_armcc.h
8 | .\objects\stm32f4xx_dac.o: C:\Keil_v5\ARM\PACK\Keil\STM32F4xx_DFP\2.11.0\Drivers\CMSIS\Device\ST\STM32F4xx\Include\system_stm32f4xx.h
9 | .\objects\stm32f4xx_dac.o: .\LIB\stm32f4xx_conf.h
10 | .\objects\stm32f4xx_dac.o: .\LIB\SPL\inc\stm32f4xx_adc.h
11 | .\objects\stm32f4xx_dac.o: .\LIB\stm32f4xx.h
12 | .\objects\stm32f4xx_dac.o: .\LIB\SPL\inc\stm32f4xx_crc.h
13 | .\objects\stm32f4xx_dac.o: .\LIB\SPL\inc\stm32f4xx_dbgmcu.h
14 | .\objects\stm32f4xx_dac.o: .\LIB\SPL\inc\stm32f4xx_dma.h
15 | .\objects\stm32f4xx_dac.o: .\LIB\SPL\inc\stm32f4xx_exti.h
16 | .\objects\stm32f4xx_dac.o: .\LIB\SPL\inc\stm32f4xx_flash.h
17 | .\objects\stm32f4xx_dac.o: .\LIB\SPL\inc\stm32f4xx_gpio.h
18 | .\objects\stm32f4xx_dac.o: .\LIB\SPL\inc\stm32f4xx_i2c.h
19 | .\objects\stm32f4xx_dac.o: .\LIB\SPL\inc\stm32f4xx_iwdg.h
20 | .\objects\stm32f4xx_dac.o: .\LIB\SPL\inc\stm32f4xx_pwr.h
21 | .\objects\stm32f4xx_dac.o: .\LIB\SPL\inc\stm32f4xx_rcc.h
22 | .\objects\stm32f4xx_dac.o: .\LIB\SPL\inc\stm32f4xx_rtc.h
23 | .\objects\stm32f4xx_dac.o: .\LIB\SPL\inc\stm32f4xx_sdio.h
24 | .\objects\stm32f4xx_dac.o: .\LIB\SPL\inc\stm32f4xx_spi.h
25 | .\objects\stm32f4xx_dac.o: .\LIB\SPL\inc\stm32f4xx_syscfg.h
26 | .\objects\stm32f4xx_dac.o: .\LIB\SPL\inc\stm32f4xx_tim.h
27 | .\objects\stm32f4xx_dac.o: .\LIB\SPL\inc\stm32f4xx_usart.h
28 | .\objects\stm32f4xx_dac.o: .\LIB\SPL\inc\stm32f4xx_wwdg.h
29 | .\objects\stm32f4xx_dac.o: .\LIB\SPL\inc\misc.h
30 | .\objects\stm32f4xx_dac.o: .\LIB\SPL\inc\stm32f4xx_cryp.h
31 | .\objects\stm32f4xx_dac.o: .\LIB\SPL\inc\stm32f4xx_hash.h
32 | .\objects\stm32f4xx_dac.o: .\LIB\SPL\inc\stm32f4xx_rng.h
33 | .\objects\stm32f4xx_dac.o: .\LIB\SPL\inc\stm32f4xx_can.h
34 | .\objects\stm32f4xx_dac.o: .\LIB\SPL\inc\stm32f4xx_dac.h
35 | .\objects\stm32f4xx_dac.o: .\LIB\SPL\inc\stm32f4xx_dcmi.h
36 | .\objects\stm32f4xx_dac.o: .\LIB\SPL\inc\stm32f4xx_fsmc.h
37 |
--------------------------------------------------------------------------------
/Keil_Project/Objects/stm32f4xx_dac.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Keil_Project/Objects/stm32f4xx_dac.o
--------------------------------------------------------------------------------
/Keil_Project/Objects/stm32f4xx_dbgmcu.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Keil_Project/Objects/stm32f4xx_dbgmcu.crf
--------------------------------------------------------------------------------
/Keil_Project/Objects/stm32f4xx_dbgmcu.d:
--------------------------------------------------------------------------------
1 | .\objects\stm32f4xx_dbgmcu.o: LIB\SPL\src\stm32f4xx_dbgmcu.c
2 | .\objects\stm32f4xx_dbgmcu.o: .\LIB\SPL\inc\stm32f4xx_dbgmcu.h
3 | .\objects\stm32f4xx_dbgmcu.o: .\LIB\stm32f4xx.h
4 | .\objects\stm32f4xx_dbgmcu.o: C:\Keil_v5\ARM\PACK\ARM\CMSIS\5.0.1\CMSIS\Include\core_cm4.h
5 | .\objects\stm32f4xx_dbgmcu.o: C:\Keil_v5\ARM\ARMCC\Bin\..\include\stdint.h
6 | .\objects\stm32f4xx_dbgmcu.o: C:\Keil_v5\ARM\PACK\ARM\CMSIS\5.0.1\CMSIS\Include\cmsis_compiler.h
7 | .\objects\stm32f4xx_dbgmcu.o: C:\Keil_v5\ARM\PACK\ARM\CMSIS\5.0.1\CMSIS\Include\cmsis_armcc.h
8 | .\objects\stm32f4xx_dbgmcu.o: C:\Keil_v5\ARM\PACK\Keil\STM32F4xx_DFP\2.11.0\Drivers\CMSIS\Device\ST\STM32F4xx\Include\system_stm32f4xx.h
9 | .\objects\stm32f4xx_dbgmcu.o: .\LIB\stm32f4xx_conf.h
10 | .\objects\stm32f4xx_dbgmcu.o: .\LIB\SPL\inc\stm32f4xx_adc.h
11 | .\objects\stm32f4xx_dbgmcu.o: .\LIB\stm32f4xx.h
12 | .\objects\stm32f4xx_dbgmcu.o: .\LIB\SPL\inc\stm32f4xx_crc.h
13 | .\objects\stm32f4xx_dbgmcu.o: .\LIB\SPL\inc\stm32f4xx_dbgmcu.h
14 | .\objects\stm32f4xx_dbgmcu.o: .\LIB\SPL\inc\stm32f4xx_dma.h
15 | .\objects\stm32f4xx_dbgmcu.o: .\LIB\SPL\inc\stm32f4xx_exti.h
16 | .\objects\stm32f4xx_dbgmcu.o: .\LIB\SPL\inc\stm32f4xx_flash.h
17 | .\objects\stm32f4xx_dbgmcu.o: .\LIB\SPL\inc\stm32f4xx_gpio.h
18 | .\objects\stm32f4xx_dbgmcu.o: .\LIB\SPL\inc\stm32f4xx_i2c.h
19 | .\objects\stm32f4xx_dbgmcu.o: .\LIB\SPL\inc\stm32f4xx_iwdg.h
20 | .\objects\stm32f4xx_dbgmcu.o: .\LIB\SPL\inc\stm32f4xx_pwr.h
21 | .\objects\stm32f4xx_dbgmcu.o: .\LIB\SPL\inc\stm32f4xx_rcc.h
22 | .\objects\stm32f4xx_dbgmcu.o: .\LIB\SPL\inc\stm32f4xx_rtc.h
23 | .\objects\stm32f4xx_dbgmcu.o: .\LIB\SPL\inc\stm32f4xx_sdio.h
24 | .\objects\stm32f4xx_dbgmcu.o: .\LIB\SPL\inc\stm32f4xx_spi.h
25 | .\objects\stm32f4xx_dbgmcu.o: .\LIB\SPL\inc\stm32f4xx_syscfg.h
26 | .\objects\stm32f4xx_dbgmcu.o: .\LIB\SPL\inc\stm32f4xx_tim.h
27 | .\objects\stm32f4xx_dbgmcu.o: .\LIB\SPL\inc\stm32f4xx_usart.h
28 | .\objects\stm32f4xx_dbgmcu.o: .\LIB\SPL\inc\stm32f4xx_wwdg.h
29 | .\objects\stm32f4xx_dbgmcu.o: .\LIB\SPL\inc\misc.h
30 | .\objects\stm32f4xx_dbgmcu.o: .\LIB\SPL\inc\stm32f4xx_cryp.h
31 | .\objects\stm32f4xx_dbgmcu.o: .\LIB\SPL\inc\stm32f4xx_hash.h
32 | .\objects\stm32f4xx_dbgmcu.o: .\LIB\SPL\inc\stm32f4xx_rng.h
33 | .\objects\stm32f4xx_dbgmcu.o: .\LIB\SPL\inc\stm32f4xx_can.h
34 | .\objects\stm32f4xx_dbgmcu.o: .\LIB\SPL\inc\stm32f4xx_dac.h
35 | .\objects\stm32f4xx_dbgmcu.o: .\LIB\SPL\inc\stm32f4xx_dcmi.h
36 | .\objects\stm32f4xx_dbgmcu.o: .\LIB\SPL\inc\stm32f4xx_fsmc.h
37 |
--------------------------------------------------------------------------------
/Keil_Project/Objects/stm32f4xx_dbgmcu.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Keil_Project/Objects/stm32f4xx_dbgmcu.o
--------------------------------------------------------------------------------
/Keil_Project/Objects/stm32f4xx_dcmi.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Keil_Project/Objects/stm32f4xx_dcmi.crf
--------------------------------------------------------------------------------
/Keil_Project/Objects/stm32f4xx_dcmi.d:
--------------------------------------------------------------------------------
1 | .\objects\stm32f4xx_dcmi.o: LIB\SPL\src\stm32f4xx_dcmi.c
2 | .\objects\stm32f4xx_dcmi.o: .\LIB\SPL\inc\stm32f4xx_dcmi.h
3 | .\objects\stm32f4xx_dcmi.o: .\LIB\stm32f4xx.h
4 | .\objects\stm32f4xx_dcmi.o: C:\Keil_v5\ARM\PACK\ARM\CMSIS\5.0.1\CMSIS\Include\core_cm4.h
5 | .\objects\stm32f4xx_dcmi.o: C:\Keil_v5\ARM\ARMCC\Bin\..\include\stdint.h
6 | .\objects\stm32f4xx_dcmi.o: C:\Keil_v5\ARM\PACK\ARM\CMSIS\5.0.1\CMSIS\Include\cmsis_compiler.h
7 | .\objects\stm32f4xx_dcmi.o: C:\Keil_v5\ARM\PACK\ARM\CMSIS\5.0.1\CMSIS\Include\cmsis_armcc.h
8 | .\objects\stm32f4xx_dcmi.o: C:\Keil_v5\ARM\PACK\Keil\STM32F4xx_DFP\2.11.0\Drivers\CMSIS\Device\ST\STM32F4xx\Include\system_stm32f4xx.h
9 | .\objects\stm32f4xx_dcmi.o: .\LIB\stm32f4xx_conf.h
10 | .\objects\stm32f4xx_dcmi.o: .\LIB\SPL\inc\stm32f4xx_adc.h
11 | .\objects\stm32f4xx_dcmi.o: .\LIB\stm32f4xx.h
12 | .\objects\stm32f4xx_dcmi.o: .\LIB\SPL\inc\stm32f4xx_crc.h
13 | .\objects\stm32f4xx_dcmi.o: .\LIB\SPL\inc\stm32f4xx_dbgmcu.h
14 | .\objects\stm32f4xx_dcmi.o: .\LIB\SPL\inc\stm32f4xx_dma.h
15 | .\objects\stm32f4xx_dcmi.o: .\LIB\SPL\inc\stm32f4xx_exti.h
16 | .\objects\stm32f4xx_dcmi.o: .\LIB\SPL\inc\stm32f4xx_flash.h
17 | .\objects\stm32f4xx_dcmi.o: .\LIB\SPL\inc\stm32f4xx_gpio.h
18 | .\objects\stm32f4xx_dcmi.o: .\LIB\SPL\inc\stm32f4xx_i2c.h
19 | .\objects\stm32f4xx_dcmi.o: .\LIB\SPL\inc\stm32f4xx_iwdg.h
20 | .\objects\stm32f4xx_dcmi.o: .\LIB\SPL\inc\stm32f4xx_pwr.h
21 | .\objects\stm32f4xx_dcmi.o: .\LIB\SPL\inc\stm32f4xx_rcc.h
22 | .\objects\stm32f4xx_dcmi.o: .\LIB\SPL\inc\stm32f4xx_rtc.h
23 | .\objects\stm32f4xx_dcmi.o: .\LIB\SPL\inc\stm32f4xx_sdio.h
24 | .\objects\stm32f4xx_dcmi.o: .\LIB\SPL\inc\stm32f4xx_spi.h
25 | .\objects\stm32f4xx_dcmi.o: .\LIB\SPL\inc\stm32f4xx_syscfg.h
26 | .\objects\stm32f4xx_dcmi.o: .\LIB\SPL\inc\stm32f4xx_tim.h
27 | .\objects\stm32f4xx_dcmi.o: .\LIB\SPL\inc\stm32f4xx_usart.h
28 | .\objects\stm32f4xx_dcmi.o: .\LIB\SPL\inc\stm32f4xx_wwdg.h
29 | .\objects\stm32f4xx_dcmi.o: .\LIB\SPL\inc\misc.h
30 | .\objects\stm32f4xx_dcmi.o: .\LIB\SPL\inc\stm32f4xx_cryp.h
31 | .\objects\stm32f4xx_dcmi.o: .\LIB\SPL\inc\stm32f4xx_hash.h
32 | .\objects\stm32f4xx_dcmi.o: .\LIB\SPL\inc\stm32f4xx_rng.h
33 | .\objects\stm32f4xx_dcmi.o: .\LIB\SPL\inc\stm32f4xx_can.h
34 | .\objects\stm32f4xx_dcmi.o: .\LIB\SPL\inc\stm32f4xx_dac.h
35 | .\objects\stm32f4xx_dcmi.o: .\LIB\SPL\inc\stm32f4xx_dcmi.h
36 | .\objects\stm32f4xx_dcmi.o: .\LIB\SPL\inc\stm32f4xx_fsmc.h
37 |
--------------------------------------------------------------------------------
/Keil_Project/Objects/stm32f4xx_dcmi.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Keil_Project/Objects/stm32f4xx_dcmi.o
--------------------------------------------------------------------------------
/Keil_Project/Objects/stm32f4xx_dfsdm.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Keil_Project/Objects/stm32f4xx_dfsdm.crf
--------------------------------------------------------------------------------
/Keil_Project/Objects/stm32f4xx_dfsdm.d:
--------------------------------------------------------------------------------
1 | .\objects\stm32f4xx_dfsdm.o: LIB\SPL\src\stm32f4xx_dfsdm.c
2 | .\objects\stm32f4xx_dfsdm.o: .\LIB\SPL\inc\stm32f4xx_dfsdm.h
3 | .\objects\stm32f4xx_dfsdm.o: .\LIB\SPL\inc\stm32f4xx_rcc.h
4 | .\objects\stm32f4xx_dfsdm.o: .\LIB\stm32f4xx.h
5 | .\objects\stm32f4xx_dfsdm.o: C:\Keil_v5\ARM\PACK\ARM\CMSIS\5.0.1\CMSIS\Include\core_cm4.h
6 | .\objects\stm32f4xx_dfsdm.o: C:\Keil_v5\ARM\ARMCC\Bin\..\include\stdint.h
7 | .\objects\stm32f4xx_dfsdm.o: C:\Keil_v5\ARM\PACK\ARM\CMSIS\5.0.1\CMSIS\Include\cmsis_compiler.h
8 | .\objects\stm32f4xx_dfsdm.o: C:\Keil_v5\ARM\PACK\ARM\CMSIS\5.0.1\CMSIS\Include\cmsis_armcc.h
9 | .\objects\stm32f4xx_dfsdm.o: C:\Keil_v5\ARM\PACK\Keil\STM32F4xx_DFP\2.11.0\Drivers\CMSIS\Device\ST\STM32F4xx\Include\system_stm32f4xx.h
10 | .\objects\stm32f4xx_dfsdm.o: .\LIB\stm32f4xx_conf.h
11 | .\objects\stm32f4xx_dfsdm.o: .\LIB\SPL\inc\stm32f4xx_adc.h
12 | .\objects\stm32f4xx_dfsdm.o: .\LIB\stm32f4xx.h
13 | .\objects\stm32f4xx_dfsdm.o: .\LIB\SPL\inc\stm32f4xx_crc.h
14 | .\objects\stm32f4xx_dfsdm.o: .\LIB\SPL\inc\stm32f4xx_dbgmcu.h
15 | .\objects\stm32f4xx_dfsdm.o: .\LIB\SPL\inc\stm32f4xx_dma.h
16 | .\objects\stm32f4xx_dfsdm.o: .\LIB\SPL\inc\stm32f4xx_exti.h
17 | .\objects\stm32f4xx_dfsdm.o: .\LIB\SPL\inc\stm32f4xx_flash.h
18 | .\objects\stm32f4xx_dfsdm.o: .\LIB\SPL\inc\stm32f4xx_gpio.h
19 | .\objects\stm32f4xx_dfsdm.o: .\LIB\SPL\inc\stm32f4xx_i2c.h
20 | .\objects\stm32f4xx_dfsdm.o: .\LIB\SPL\inc\stm32f4xx_iwdg.h
21 | .\objects\stm32f4xx_dfsdm.o: .\LIB\SPL\inc\stm32f4xx_pwr.h
22 | .\objects\stm32f4xx_dfsdm.o: .\LIB\SPL\inc\stm32f4xx_rcc.h
23 | .\objects\stm32f4xx_dfsdm.o: .\LIB\SPL\inc\stm32f4xx_rtc.h
24 | .\objects\stm32f4xx_dfsdm.o: .\LIB\SPL\inc\stm32f4xx_sdio.h
25 | .\objects\stm32f4xx_dfsdm.o: .\LIB\SPL\inc\stm32f4xx_spi.h
26 | .\objects\stm32f4xx_dfsdm.o: .\LIB\SPL\inc\stm32f4xx_syscfg.h
27 | .\objects\stm32f4xx_dfsdm.o: .\LIB\SPL\inc\stm32f4xx_tim.h
28 | .\objects\stm32f4xx_dfsdm.o: .\LIB\SPL\inc\stm32f4xx_usart.h
29 | .\objects\stm32f4xx_dfsdm.o: .\LIB\SPL\inc\stm32f4xx_wwdg.h
30 | .\objects\stm32f4xx_dfsdm.o: .\LIB\SPL\inc\misc.h
31 | .\objects\stm32f4xx_dfsdm.o: .\LIB\SPL\inc\stm32f4xx_cryp.h
32 | .\objects\stm32f4xx_dfsdm.o: .\LIB\SPL\inc\stm32f4xx_hash.h
33 | .\objects\stm32f4xx_dfsdm.o: .\LIB\SPL\inc\stm32f4xx_rng.h
34 | .\objects\stm32f4xx_dfsdm.o: .\LIB\SPL\inc\stm32f4xx_can.h
35 | .\objects\stm32f4xx_dfsdm.o: .\LIB\SPL\inc\stm32f4xx_dac.h
36 | .\objects\stm32f4xx_dfsdm.o: .\LIB\SPL\inc\stm32f4xx_dcmi.h
37 | .\objects\stm32f4xx_dfsdm.o: .\LIB\SPL\inc\stm32f4xx_fsmc.h
38 |
--------------------------------------------------------------------------------
/Keil_Project/Objects/stm32f4xx_dfsdm.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Keil_Project/Objects/stm32f4xx_dfsdm.o
--------------------------------------------------------------------------------
/Keil_Project/Objects/stm32f4xx_dma.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Keil_Project/Objects/stm32f4xx_dma.crf
--------------------------------------------------------------------------------
/Keil_Project/Objects/stm32f4xx_dma.d:
--------------------------------------------------------------------------------
1 | .\objects\stm32f4xx_dma.o: LIB\SPL\src\stm32f4xx_dma.c
2 | .\objects\stm32f4xx_dma.o: .\LIB\SPL\inc\stm32f4xx_dma.h
3 | .\objects\stm32f4xx_dma.o: .\LIB\stm32f4xx.h
4 | .\objects\stm32f4xx_dma.o: C:\Keil_v5\ARM\PACK\ARM\CMSIS\5.0.1\CMSIS\Include\core_cm4.h
5 | .\objects\stm32f4xx_dma.o: C:\Keil_v5\ARM\ARMCC\Bin\..\include\stdint.h
6 | .\objects\stm32f4xx_dma.o: C:\Keil_v5\ARM\PACK\ARM\CMSIS\5.0.1\CMSIS\Include\cmsis_compiler.h
7 | .\objects\stm32f4xx_dma.o: C:\Keil_v5\ARM\PACK\ARM\CMSIS\5.0.1\CMSIS\Include\cmsis_armcc.h
8 | .\objects\stm32f4xx_dma.o: C:\Keil_v5\ARM\PACK\Keil\STM32F4xx_DFP\2.11.0\Drivers\CMSIS\Device\ST\STM32F4xx\Include\system_stm32f4xx.h
9 | .\objects\stm32f4xx_dma.o: .\LIB\stm32f4xx_conf.h
10 | .\objects\stm32f4xx_dma.o: .\LIB\SPL\inc\stm32f4xx_adc.h
11 | .\objects\stm32f4xx_dma.o: .\LIB\stm32f4xx.h
12 | .\objects\stm32f4xx_dma.o: .\LIB\SPL\inc\stm32f4xx_crc.h
13 | .\objects\stm32f4xx_dma.o: .\LIB\SPL\inc\stm32f4xx_dbgmcu.h
14 | .\objects\stm32f4xx_dma.o: .\LIB\SPL\inc\stm32f4xx_dma.h
15 | .\objects\stm32f4xx_dma.o: .\LIB\SPL\inc\stm32f4xx_exti.h
16 | .\objects\stm32f4xx_dma.o: .\LIB\SPL\inc\stm32f4xx_flash.h
17 | .\objects\stm32f4xx_dma.o: .\LIB\SPL\inc\stm32f4xx_gpio.h
18 | .\objects\stm32f4xx_dma.o: .\LIB\SPL\inc\stm32f4xx_i2c.h
19 | .\objects\stm32f4xx_dma.o: .\LIB\SPL\inc\stm32f4xx_iwdg.h
20 | .\objects\stm32f4xx_dma.o: .\LIB\SPL\inc\stm32f4xx_pwr.h
21 | .\objects\stm32f4xx_dma.o: .\LIB\SPL\inc\stm32f4xx_rcc.h
22 | .\objects\stm32f4xx_dma.o: .\LIB\SPL\inc\stm32f4xx_rtc.h
23 | .\objects\stm32f4xx_dma.o: .\LIB\SPL\inc\stm32f4xx_sdio.h
24 | .\objects\stm32f4xx_dma.o: .\LIB\SPL\inc\stm32f4xx_spi.h
25 | .\objects\stm32f4xx_dma.o: .\LIB\SPL\inc\stm32f4xx_syscfg.h
26 | .\objects\stm32f4xx_dma.o: .\LIB\SPL\inc\stm32f4xx_tim.h
27 | .\objects\stm32f4xx_dma.o: .\LIB\SPL\inc\stm32f4xx_usart.h
28 | .\objects\stm32f4xx_dma.o: .\LIB\SPL\inc\stm32f4xx_wwdg.h
29 | .\objects\stm32f4xx_dma.o: .\LIB\SPL\inc\misc.h
30 | .\objects\stm32f4xx_dma.o: .\LIB\SPL\inc\stm32f4xx_cryp.h
31 | .\objects\stm32f4xx_dma.o: .\LIB\SPL\inc\stm32f4xx_hash.h
32 | .\objects\stm32f4xx_dma.o: .\LIB\SPL\inc\stm32f4xx_rng.h
33 | .\objects\stm32f4xx_dma.o: .\LIB\SPL\inc\stm32f4xx_can.h
34 | .\objects\stm32f4xx_dma.o: .\LIB\SPL\inc\stm32f4xx_dac.h
35 | .\objects\stm32f4xx_dma.o: .\LIB\SPL\inc\stm32f4xx_dcmi.h
36 | .\objects\stm32f4xx_dma.o: .\LIB\SPL\inc\stm32f4xx_fsmc.h
37 |
--------------------------------------------------------------------------------
/Keil_Project/Objects/stm32f4xx_dma.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Keil_Project/Objects/stm32f4xx_dma.o
--------------------------------------------------------------------------------
/Keil_Project/Objects/stm32f4xx_dma2d.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Keil_Project/Objects/stm32f4xx_dma2d.crf
--------------------------------------------------------------------------------
/Keil_Project/Objects/stm32f4xx_dma2d.d:
--------------------------------------------------------------------------------
1 | .\objects\stm32f4xx_dma2d.o: LIB\SPL\src\stm32f4xx_dma2d.c
2 | .\objects\stm32f4xx_dma2d.o: .\LIB\SPL\inc\stm32f4xx_dma2d.h
3 | .\objects\stm32f4xx_dma2d.o: .\LIB\stm32f4xx.h
4 | .\objects\stm32f4xx_dma2d.o: C:\Keil_v5\ARM\PACK\ARM\CMSIS\5.0.1\CMSIS\Include\core_cm4.h
5 | .\objects\stm32f4xx_dma2d.o: C:\Keil_v5\ARM\ARMCC\Bin\..\include\stdint.h
6 | .\objects\stm32f4xx_dma2d.o: C:\Keil_v5\ARM\PACK\ARM\CMSIS\5.0.1\CMSIS\Include\cmsis_compiler.h
7 | .\objects\stm32f4xx_dma2d.o: C:\Keil_v5\ARM\PACK\ARM\CMSIS\5.0.1\CMSIS\Include\cmsis_armcc.h
8 | .\objects\stm32f4xx_dma2d.o: C:\Keil_v5\ARM\PACK\Keil\STM32F4xx_DFP\2.11.0\Drivers\CMSIS\Device\ST\STM32F4xx\Include\system_stm32f4xx.h
9 | .\objects\stm32f4xx_dma2d.o: .\LIB\stm32f4xx_conf.h
10 | .\objects\stm32f4xx_dma2d.o: .\LIB\SPL\inc\stm32f4xx_adc.h
11 | .\objects\stm32f4xx_dma2d.o: .\LIB\stm32f4xx.h
12 | .\objects\stm32f4xx_dma2d.o: .\LIB\SPL\inc\stm32f4xx_crc.h
13 | .\objects\stm32f4xx_dma2d.o: .\LIB\SPL\inc\stm32f4xx_dbgmcu.h
14 | .\objects\stm32f4xx_dma2d.o: .\LIB\SPL\inc\stm32f4xx_dma.h
15 | .\objects\stm32f4xx_dma2d.o: .\LIB\SPL\inc\stm32f4xx_exti.h
16 | .\objects\stm32f4xx_dma2d.o: .\LIB\SPL\inc\stm32f4xx_flash.h
17 | .\objects\stm32f4xx_dma2d.o: .\LIB\SPL\inc\stm32f4xx_gpio.h
18 | .\objects\stm32f4xx_dma2d.o: .\LIB\SPL\inc\stm32f4xx_i2c.h
19 | .\objects\stm32f4xx_dma2d.o: .\LIB\SPL\inc\stm32f4xx_iwdg.h
20 | .\objects\stm32f4xx_dma2d.o: .\LIB\SPL\inc\stm32f4xx_pwr.h
21 | .\objects\stm32f4xx_dma2d.o: .\LIB\SPL\inc\stm32f4xx_rcc.h
22 | .\objects\stm32f4xx_dma2d.o: .\LIB\SPL\inc\stm32f4xx_rtc.h
23 | .\objects\stm32f4xx_dma2d.o: .\LIB\SPL\inc\stm32f4xx_sdio.h
24 | .\objects\stm32f4xx_dma2d.o: .\LIB\SPL\inc\stm32f4xx_spi.h
25 | .\objects\stm32f4xx_dma2d.o: .\LIB\SPL\inc\stm32f4xx_syscfg.h
26 | .\objects\stm32f4xx_dma2d.o: .\LIB\SPL\inc\stm32f4xx_tim.h
27 | .\objects\stm32f4xx_dma2d.o: .\LIB\SPL\inc\stm32f4xx_usart.h
28 | .\objects\stm32f4xx_dma2d.o: .\LIB\SPL\inc\stm32f4xx_wwdg.h
29 | .\objects\stm32f4xx_dma2d.o: .\LIB\SPL\inc\misc.h
30 | .\objects\stm32f4xx_dma2d.o: .\LIB\SPL\inc\stm32f4xx_cryp.h
31 | .\objects\stm32f4xx_dma2d.o: .\LIB\SPL\inc\stm32f4xx_hash.h
32 | .\objects\stm32f4xx_dma2d.o: .\LIB\SPL\inc\stm32f4xx_rng.h
33 | .\objects\stm32f4xx_dma2d.o: .\LIB\SPL\inc\stm32f4xx_can.h
34 | .\objects\stm32f4xx_dma2d.o: .\LIB\SPL\inc\stm32f4xx_dac.h
35 | .\objects\stm32f4xx_dma2d.o: .\LIB\SPL\inc\stm32f4xx_dcmi.h
36 | .\objects\stm32f4xx_dma2d.o: .\LIB\SPL\inc\stm32f4xx_fsmc.h
37 |
--------------------------------------------------------------------------------
/Keil_Project/Objects/stm32f4xx_dma2d.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Keil_Project/Objects/stm32f4xx_dma2d.o
--------------------------------------------------------------------------------
/Keil_Project/Objects/stm32f4xx_dsi.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Keil_Project/Objects/stm32f4xx_dsi.crf
--------------------------------------------------------------------------------
/Keil_Project/Objects/stm32f4xx_dsi.d:
--------------------------------------------------------------------------------
1 | .\objects\stm32f4xx_dsi.o: LIB\SPL\src\stm32f4xx_dsi.c
2 | .\objects\stm32f4xx_dsi.o: .\LIB\SPL\inc\stm32f4xx_dsi.h
3 | .\objects\stm32f4xx_dsi.o: .\LIB\stm32f4xx.h
4 | .\objects\stm32f4xx_dsi.o: C:\Keil_v5\ARM\PACK\ARM\CMSIS\5.0.1\CMSIS\Include\core_cm4.h
5 | .\objects\stm32f4xx_dsi.o: C:\Keil_v5\ARM\ARMCC\Bin\..\include\stdint.h
6 | .\objects\stm32f4xx_dsi.o: C:\Keil_v5\ARM\PACK\ARM\CMSIS\5.0.1\CMSIS\Include\cmsis_compiler.h
7 | .\objects\stm32f4xx_dsi.o: C:\Keil_v5\ARM\PACK\ARM\CMSIS\5.0.1\CMSIS\Include\cmsis_armcc.h
8 | .\objects\stm32f4xx_dsi.o: C:\Keil_v5\ARM\PACK\Keil\STM32F4xx_DFP\2.11.0\Drivers\CMSIS\Device\ST\STM32F4xx\Include\system_stm32f4xx.h
9 | .\objects\stm32f4xx_dsi.o: .\LIB\stm32f4xx_conf.h
10 | .\objects\stm32f4xx_dsi.o: .\LIB\SPL\inc\stm32f4xx_adc.h
11 | .\objects\stm32f4xx_dsi.o: .\LIB\stm32f4xx.h
12 | .\objects\stm32f4xx_dsi.o: .\LIB\SPL\inc\stm32f4xx_crc.h
13 | .\objects\stm32f4xx_dsi.o: .\LIB\SPL\inc\stm32f4xx_dbgmcu.h
14 | .\objects\stm32f4xx_dsi.o: .\LIB\SPL\inc\stm32f4xx_dma.h
15 | .\objects\stm32f4xx_dsi.o: .\LIB\SPL\inc\stm32f4xx_exti.h
16 | .\objects\stm32f4xx_dsi.o: .\LIB\SPL\inc\stm32f4xx_flash.h
17 | .\objects\stm32f4xx_dsi.o: .\LIB\SPL\inc\stm32f4xx_gpio.h
18 | .\objects\stm32f4xx_dsi.o: .\LIB\SPL\inc\stm32f4xx_i2c.h
19 | .\objects\stm32f4xx_dsi.o: .\LIB\SPL\inc\stm32f4xx_iwdg.h
20 | .\objects\stm32f4xx_dsi.o: .\LIB\SPL\inc\stm32f4xx_pwr.h
21 | .\objects\stm32f4xx_dsi.o: .\LIB\SPL\inc\stm32f4xx_rcc.h
22 | .\objects\stm32f4xx_dsi.o: .\LIB\SPL\inc\stm32f4xx_rtc.h
23 | .\objects\stm32f4xx_dsi.o: .\LIB\SPL\inc\stm32f4xx_sdio.h
24 | .\objects\stm32f4xx_dsi.o: .\LIB\SPL\inc\stm32f4xx_spi.h
25 | .\objects\stm32f4xx_dsi.o: .\LIB\SPL\inc\stm32f4xx_syscfg.h
26 | .\objects\stm32f4xx_dsi.o: .\LIB\SPL\inc\stm32f4xx_tim.h
27 | .\objects\stm32f4xx_dsi.o: .\LIB\SPL\inc\stm32f4xx_usart.h
28 | .\objects\stm32f4xx_dsi.o: .\LIB\SPL\inc\stm32f4xx_wwdg.h
29 | .\objects\stm32f4xx_dsi.o: .\LIB\SPL\inc\misc.h
30 | .\objects\stm32f4xx_dsi.o: .\LIB\SPL\inc\stm32f4xx_cryp.h
31 | .\objects\stm32f4xx_dsi.o: .\LIB\SPL\inc\stm32f4xx_hash.h
32 | .\objects\stm32f4xx_dsi.o: .\LIB\SPL\inc\stm32f4xx_rng.h
33 | .\objects\stm32f4xx_dsi.o: .\LIB\SPL\inc\stm32f4xx_can.h
34 | .\objects\stm32f4xx_dsi.o: .\LIB\SPL\inc\stm32f4xx_dac.h
35 | .\objects\stm32f4xx_dsi.o: .\LIB\SPL\inc\stm32f4xx_dcmi.h
36 | .\objects\stm32f4xx_dsi.o: .\LIB\SPL\inc\stm32f4xx_fsmc.h
37 |
--------------------------------------------------------------------------------
/Keil_Project/Objects/stm32f4xx_dsi.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Keil_Project/Objects/stm32f4xx_dsi.o
--------------------------------------------------------------------------------
/Keil_Project/Objects/stm32f4xx_exti.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Keil_Project/Objects/stm32f4xx_exti.crf
--------------------------------------------------------------------------------
/Keil_Project/Objects/stm32f4xx_exti.d:
--------------------------------------------------------------------------------
1 | .\objects\stm32f4xx_exti.o: LIB\SPL\src\stm32f4xx_exti.c
2 | .\objects\stm32f4xx_exti.o: .\LIB\SPL\inc\stm32f4xx_exti.h
3 | .\objects\stm32f4xx_exti.o: .\LIB\stm32f4xx.h
4 | .\objects\stm32f4xx_exti.o: C:\Keil_v5\ARM\PACK\ARM\CMSIS\5.0.1\CMSIS\Include\core_cm4.h
5 | .\objects\stm32f4xx_exti.o: C:\Keil_v5\ARM\ARMCC\Bin\..\include\stdint.h
6 | .\objects\stm32f4xx_exti.o: C:\Keil_v5\ARM\PACK\ARM\CMSIS\5.0.1\CMSIS\Include\cmsis_compiler.h
7 | .\objects\stm32f4xx_exti.o: C:\Keil_v5\ARM\PACK\ARM\CMSIS\5.0.1\CMSIS\Include\cmsis_armcc.h
8 | .\objects\stm32f4xx_exti.o: C:\Keil_v5\ARM\PACK\Keil\STM32F4xx_DFP\2.11.0\Drivers\CMSIS\Device\ST\STM32F4xx\Include\system_stm32f4xx.h
9 | .\objects\stm32f4xx_exti.o: .\LIB\stm32f4xx_conf.h
10 | .\objects\stm32f4xx_exti.o: .\LIB\SPL\inc\stm32f4xx_adc.h
11 | .\objects\stm32f4xx_exti.o: .\LIB\stm32f4xx.h
12 | .\objects\stm32f4xx_exti.o: .\LIB\SPL\inc\stm32f4xx_crc.h
13 | .\objects\stm32f4xx_exti.o: .\LIB\SPL\inc\stm32f4xx_dbgmcu.h
14 | .\objects\stm32f4xx_exti.o: .\LIB\SPL\inc\stm32f4xx_dma.h
15 | .\objects\stm32f4xx_exti.o: .\LIB\SPL\inc\stm32f4xx_exti.h
16 | .\objects\stm32f4xx_exti.o: .\LIB\SPL\inc\stm32f4xx_flash.h
17 | .\objects\stm32f4xx_exti.o: .\LIB\SPL\inc\stm32f4xx_gpio.h
18 | .\objects\stm32f4xx_exti.o: .\LIB\SPL\inc\stm32f4xx_i2c.h
19 | .\objects\stm32f4xx_exti.o: .\LIB\SPL\inc\stm32f4xx_iwdg.h
20 | .\objects\stm32f4xx_exti.o: .\LIB\SPL\inc\stm32f4xx_pwr.h
21 | .\objects\stm32f4xx_exti.o: .\LIB\SPL\inc\stm32f4xx_rcc.h
22 | .\objects\stm32f4xx_exti.o: .\LIB\SPL\inc\stm32f4xx_rtc.h
23 | .\objects\stm32f4xx_exti.o: .\LIB\SPL\inc\stm32f4xx_sdio.h
24 | .\objects\stm32f4xx_exti.o: .\LIB\SPL\inc\stm32f4xx_spi.h
25 | .\objects\stm32f4xx_exti.o: .\LIB\SPL\inc\stm32f4xx_syscfg.h
26 | .\objects\stm32f4xx_exti.o: .\LIB\SPL\inc\stm32f4xx_tim.h
27 | .\objects\stm32f4xx_exti.o: .\LIB\SPL\inc\stm32f4xx_usart.h
28 | .\objects\stm32f4xx_exti.o: .\LIB\SPL\inc\stm32f4xx_wwdg.h
29 | .\objects\stm32f4xx_exti.o: .\LIB\SPL\inc\misc.h
30 | .\objects\stm32f4xx_exti.o: .\LIB\SPL\inc\stm32f4xx_cryp.h
31 | .\objects\stm32f4xx_exti.o: .\LIB\SPL\inc\stm32f4xx_hash.h
32 | .\objects\stm32f4xx_exti.o: .\LIB\SPL\inc\stm32f4xx_rng.h
33 | .\objects\stm32f4xx_exti.o: .\LIB\SPL\inc\stm32f4xx_can.h
34 | .\objects\stm32f4xx_exti.o: .\LIB\SPL\inc\stm32f4xx_dac.h
35 | .\objects\stm32f4xx_exti.o: .\LIB\SPL\inc\stm32f4xx_dcmi.h
36 | .\objects\stm32f4xx_exti.o: .\LIB\SPL\inc\stm32f4xx_fsmc.h
37 |
--------------------------------------------------------------------------------
/Keil_Project/Objects/stm32f4xx_exti.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Keil_Project/Objects/stm32f4xx_exti.o
--------------------------------------------------------------------------------
/Keil_Project/Objects/stm32f4xx_flash.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Keil_Project/Objects/stm32f4xx_flash.crf
--------------------------------------------------------------------------------
/Keil_Project/Objects/stm32f4xx_flash.d:
--------------------------------------------------------------------------------
1 | .\objects\stm32f4xx_flash.o: LIB\SPL\src\stm32f4xx_flash.c
2 | .\objects\stm32f4xx_flash.o: .\LIB\SPL\inc\stm32f4xx_flash.h
3 | .\objects\stm32f4xx_flash.o: .\LIB\stm32f4xx.h
4 | .\objects\stm32f4xx_flash.o: C:\Keil_v5\ARM\PACK\ARM\CMSIS\5.0.1\CMSIS\Include\core_cm4.h
5 | .\objects\stm32f4xx_flash.o: C:\Keil_v5\ARM\ARMCC\Bin\..\include\stdint.h
6 | .\objects\stm32f4xx_flash.o: C:\Keil_v5\ARM\PACK\ARM\CMSIS\5.0.1\CMSIS\Include\cmsis_compiler.h
7 | .\objects\stm32f4xx_flash.o: C:\Keil_v5\ARM\PACK\ARM\CMSIS\5.0.1\CMSIS\Include\cmsis_armcc.h
8 | .\objects\stm32f4xx_flash.o: C:\Keil_v5\ARM\PACK\Keil\STM32F4xx_DFP\2.11.0\Drivers\CMSIS\Device\ST\STM32F4xx\Include\system_stm32f4xx.h
9 | .\objects\stm32f4xx_flash.o: .\LIB\stm32f4xx_conf.h
10 | .\objects\stm32f4xx_flash.o: .\LIB\SPL\inc\stm32f4xx_adc.h
11 | .\objects\stm32f4xx_flash.o: .\LIB\stm32f4xx.h
12 | .\objects\stm32f4xx_flash.o: .\LIB\SPL\inc\stm32f4xx_crc.h
13 | .\objects\stm32f4xx_flash.o: .\LIB\SPL\inc\stm32f4xx_dbgmcu.h
14 | .\objects\stm32f4xx_flash.o: .\LIB\SPL\inc\stm32f4xx_dma.h
15 | .\objects\stm32f4xx_flash.o: .\LIB\SPL\inc\stm32f4xx_exti.h
16 | .\objects\stm32f4xx_flash.o: .\LIB\SPL\inc\stm32f4xx_flash.h
17 | .\objects\stm32f4xx_flash.o: .\LIB\SPL\inc\stm32f4xx_gpio.h
18 | .\objects\stm32f4xx_flash.o: .\LIB\SPL\inc\stm32f4xx_i2c.h
19 | .\objects\stm32f4xx_flash.o: .\LIB\SPL\inc\stm32f4xx_iwdg.h
20 | .\objects\stm32f4xx_flash.o: .\LIB\SPL\inc\stm32f4xx_pwr.h
21 | .\objects\stm32f4xx_flash.o: .\LIB\SPL\inc\stm32f4xx_rcc.h
22 | .\objects\stm32f4xx_flash.o: .\LIB\SPL\inc\stm32f4xx_rtc.h
23 | .\objects\stm32f4xx_flash.o: .\LIB\SPL\inc\stm32f4xx_sdio.h
24 | .\objects\stm32f4xx_flash.o: .\LIB\SPL\inc\stm32f4xx_spi.h
25 | .\objects\stm32f4xx_flash.o: .\LIB\SPL\inc\stm32f4xx_syscfg.h
26 | .\objects\stm32f4xx_flash.o: .\LIB\SPL\inc\stm32f4xx_tim.h
27 | .\objects\stm32f4xx_flash.o: .\LIB\SPL\inc\stm32f4xx_usart.h
28 | .\objects\stm32f4xx_flash.o: .\LIB\SPL\inc\stm32f4xx_wwdg.h
29 | .\objects\stm32f4xx_flash.o: .\LIB\SPL\inc\misc.h
30 | .\objects\stm32f4xx_flash.o: .\LIB\SPL\inc\stm32f4xx_cryp.h
31 | .\objects\stm32f4xx_flash.o: .\LIB\SPL\inc\stm32f4xx_hash.h
32 | .\objects\stm32f4xx_flash.o: .\LIB\SPL\inc\stm32f4xx_rng.h
33 | .\objects\stm32f4xx_flash.o: .\LIB\SPL\inc\stm32f4xx_can.h
34 | .\objects\stm32f4xx_flash.o: .\LIB\SPL\inc\stm32f4xx_dac.h
35 | .\objects\stm32f4xx_flash.o: .\LIB\SPL\inc\stm32f4xx_dcmi.h
36 | .\objects\stm32f4xx_flash.o: .\LIB\SPL\inc\stm32f4xx_fsmc.h
37 |
--------------------------------------------------------------------------------
/Keil_Project/Objects/stm32f4xx_flash.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Keil_Project/Objects/stm32f4xx_flash.o
--------------------------------------------------------------------------------
/Keil_Project/Objects/stm32f4xx_flash_ramfunc.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Keil_Project/Objects/stm32f4xx_flash_ramfunc.crf
--------------------------------------------------------------------------------
/Keil_Project/Objects/stm32f4xx_flash_ramfunc.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Keil_Project/Objects/stm32f4xx_flash_ramfunc.o
--------------------------------------------------------------------------------
/Keil_Project/Objects/stm32f4xx_fmc.d:
--------------------------------------------------------------------------------
1 | .\objects\stm32f4xx_fmc.o: LIB\SPL\src\stm32f4xx_fmc.c
2 | .\objects\stm32f4xx_fmc.o: .\LIB\SPL\inc\stm32f4xx_fmc.h
3 | .\objects\stm32f4xx_fmc.o: .\LIB\stm32f4xx.h
4 | .\objects\stm32f4xx_fmc.o: C:\Keil_v5\ARM\PACK\ARM\CMSIS\5.0.1\CMSIS\Include\core_cm4.h
5 | .\objects\stm32f4xx_fmc.o: C:\Keil_v5\ARM\ARMCC\Bin\..\include\stdint.h
6 | .\objects\stm32f4xx_fmc.o: C:\Keil_v5\ARM\PACK\ARM\CMSIS\5.0.1\CMSIS\Include\cmsis_compiler.h
7 | .\objects\stm32f4xx_fmc.o: C:\Keil_v5\ARM\PACK\ARM\CMSIS\5.0.1\CMSIS\Include\cmsis_armcc.h
8 | .\objects\stm32f4xx_fmc.o: C:\Keil_v5\ARM\PACK\Keil\STM32F4xx_DFP\2.11.0\Drivers\CMSIS\Device\ST\STM32F4xx\Include\system_stm32f4xx.h
9 | .\objects\stm32f4xx_fmc.o: .\LIB\stm32f4xx_conf.h
10 | .\objects\stm32f4xx_fmc.o: .\LIB\SPL\inc\stm32f4xx_adc.h
11 | .\objects\stm32f4xx_fmc.o: .\LIB\stm32f4xx.h
12 | .\objects\stm32f4xx_fmc.o: .\LIB\SPL\inc\stm32f4xx_crc.h
13 | .\objects\stm32f4xx_fmc.o: .\LIB\SPL\inc\stm32f4xx_dbgmcu.h
14 | .\objects\stm32f4xx_fmc.o: .\LIB\SPL\inc\stm32f4xx_dma.h
15 | .\objects\stm32f4xx_fmc.o: .\LIB\SPL\inc\stm32f4xx_exti.h
16 | .\objects\stm32f4xx_fmc.o: .\LIB\SPL\inc\stm32f4xx_flash.h
17 | .\objects\stm32f4xx_fmc.o: .\LIB\SPL\inc\stm32f4xx_gpio.h
18 | .\objects\stm32f4xx_fmc.o: .\LIB\SPL\inc\stm32f4xx_i2c.h
19 | .\objects\stm32f4xx_fmc.o: .\LIB\SPL\inc\stm32f4xx_iwdg.h
20 | .\objects\stm32f4xx_fmc.o: .\LIB\SPL\inc\stm32f4xx_pwr.h
21 | .\objects\stm32f4xx_fmc.o: .\LIB\SPL\inc\stm32f4xx_rcc.h
22 | .\objects\stm32f4xx_fmc.o: .\LIB\SPL\inc\stm32f4xx_rtc.h
23 | .\objects\stm32f4xx_fmc.o: .\LIB\SPL\inc\stm32f4xx_sdio.h
24 | .\objects\stm32f4xx_fmc.o: .\LIB\SPL\inc\stm32f4xx_spi.h
25 | .\objects\stm32f4xx_fmc.o: .\LIB\SPL\inc\stm32f4xx_syscfg.h
26 | .\objects\stm32f4xx_fmc.o: .\LIB\SPL\inc\stm32f4xx_tim.h
27 | .\objects\stm32f4xx_fmc.o: .\LIB\SPL\inc\stm32f4xx_usart.h
28 | .\objects\stm32f4xx_fmc.o: .\LIB\SPL\inc\stm32f4xx_wwdg.h
29 | .\objects\stm32f4xx_fmc.o: .\LIB\SPL\inc\misc.h
30 | .\objects\stm32f4xx_fmc.o: .\LIB\SPL\inc\stm32f4xx_cryp.h
31 | .\objects\stm32f4xx_fmc.o: .\LIB\SPL\inc\stm32f4xx_hash.h
32 | .\objects\stm32f4xx_fmc.o: .\LIB\SPL\inc\stm32f4xx_rng.h
33 | .\objects\stm32f4xx_fmc.o: .\LIB\SPL\inc\stm32f4xx_can.h
34 | .\objects\stm32f4xx_fmc.o: .\LIB\SPL\inc\stm32f4xx_dac.h
35 | .\objects\stm32f4xx_fmc.o: .\LIB\SPL\inc\stm32f4xx_dcmi.h
36 | .\objects\stm32f4xx_fmc.o: .\LIB\SPL\inc\stm32f4xx_fsmc.h
37 |
--------------------------------------------------------------------------------
/Keil_Project/Objects/stm32f4xx_fmpi2c.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Keil_Project/Objects/stm32f4xx_fmpi2c.crf
--------------------------------------------------------------------------------
/Keil_Project/Objects/stm32f4xx_fmpi2c.d:
--------------------------------------------------------------------------------
1 | .\objects\stm32f4xx_fmpi2c.o: LIB\SPL\src\stm32f4xx_fmpi2c.c
2 | .\objects\stm32f4xx_fmpi2c.o: .\LIB\SPL\inc\stm32f4xx_fmpi2c.h
3 | .\objects\stm32f4xx_fmpi2c.o: .\LIB\stm32f4xx.h
4 | .\objects\stm32f4xx_fmpi2c.o: C:\Keil_v5\ARM\PACK\ARM\CMSIS\5.0.1\CMSIS\Include\core_cm4.h
5 | .\objects\stm32f4xx_fmpi2c.o: C:\Keil_v5\ARM\ARMCC\Bin\..\include\stdint.h
6 | .\objects\stm32f4xx_fmpi2c.o: C:\Keil_v5\ARM\PACK\ARM\CMSIS\5.0.1\CMSIS\Include\cmsis_compiler.h
7 | .\objects\stm32f4xx_fmpi2c.o: C:\Keil_v5\ARM\PACK\ARM\CMSIS\5.0.1\CMSIS\Include\cmsis_armcc.h
8 | .\objects\stm32f4xx_fmpi2c.o: C:\Keil_v5\ARM\PACK\Keil\STM32F4xx_DFP\2.11.0\Drivers\CMSIS\Device\ST\STM32F4xx\Include\system_stm32f4xx.h
9 | .\objects\stm32f4xx_fmpi2c.o: .\LIB\stm32f4xx_conf.h
10 | .\objects\stm32f4xx_fmpi2c.o: .\LIB\SPL\inc\stm32f4xx_adc.h
11 | .\objects\stm32f4xx_fmpi2c.o: .\LIB\stm32f4xx.h
12 | .\objects\stm32f4xx_fmpi2c.o: .\LIB\SPL\inc\stm32f4xx_crc.h
13 | .\objects\stm32f4xx_fmpi2c.o: .\LIB\SPL\inc\stm32f4xx_dbgmcu.h
14 | .\objects\stm32f4xx_fmpi2c.o: .\LIB\SPL\inc\stm32f4xx_dma.h
15 | .\objects\stm32f4xx_fmpi2c.o: .\LIB\SPL\inc\stm32f4xx_exti.h
16 | .\objects\stm32f4xx_fmpi2c.o: .\LIB\SPL\inc\stm32f4xx_flash.h
17 | .\objects\stm32f4xx_fmpi2c.o: .\LIB\SPL\inc\stm32f4xx_gpio.h
18 | .\objects\stm32f4xx_fmpi2c.o: .\LIB\SPL\inc\stm32f4xx_i2c.h
19 | .\objects\stm32f4xx_fmpi2c.o: .\LIB\SPL\inc\stm32f4xx_iwdg.h
20 | .\objects\stm32f4xx_fmpi2c.o: .\LIB\SPL\inc\stm32f4xx_pwr.h
21 | .\objects\stm32f4xx_fmpi2c.o: .\LIB\SPL\inc\stm32f4xx_rcc.h
22 | .\objects\stm32f4xx_fmpi2c.o: .\LIB\SPL\inc\stm32f4xx_rtc.h
23 | .\objects\stm32f4xx_fmpi2c.o: .\LIB\SPL\inc\stm32f4xx_sdio.h
24 | .\objects\stm32f4xx_fmpi2c.o: .\LIB\SPL\inc\stm32f4xx_spi.h
25 | .\objects\stm32f4xx_fmpi2c.o: .\LIB\SPL\inc\stm32f4xx_syscfg.h
26 | .\objects\stm32f4xx_fmpi2c.o: .\LIB\SPL\inc\stm32f4xx_tim.h
27 | .\objects\stm32f4xx_fmpi2c.o: .\LIB\SPL\inc\stm32f4xx_usart.h
28 | .\objects\stm32f4xx_fmpi2c.o: .\LIB\SPL\inc\stm32f4xx_wwdg.h
29 | .\objects\stm32f4xx_fmpi2c.o: .\LIB\SPL\inc\misc.h
30 | .\objects\stm32f4xx_fmpi2c.o: .\LIB\SPL\inc\stm32f4xx_cryp.h
31 | .\objects\stm32f4xx_fmpi2c.o: .\LIB\SPL\inc\stm32f4xx_hash.h
32 | .\objects\stm32f4xx_fmpi2c.o: .\LIB\SPL\inc\stm32f4xx_rng.h
33 | .\objects\stm32f4xx_fmpi2c.o: .\LIB\SPL\inc\stm32f4xx_can.h
34 | .\objects\stm32f4xx_fmpi2c.o: .\LIB\SPL\inc\stm32f4xx_dac.h
35 | .\objects\stm32f4xx_fmpi2c.o: .\LIB\SPL\inc\stm32f4xx_dcmi.h
36 | .\objects\stm32f4xx_fmpi2c.o: .\LIB\SPL\inc\stm32f4xx_fsmc.h
37 |
--------------------------------------------------------------------------------
/Keil_Project/Objects/stm32f4xx_fmpi2c.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Keil_Project/Objects/stm32f4xx_fmpi2c.o
--------------------------------------------------------------------------------
/Keil_Project/Objects/stm32f4xx_fsmc.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Keil_Project/Objects/stm32f4xx_fsmc.crf
--------------------------------------------------------------------------------
/Keil_Project/Objects/stm32f4xx_fsmc.d:
--------------------------------------------------------------------------------
1 | .\objects\stm32f4xx_fsmc.o: LIB\SPL\src\stm32f4xx_fsmc.c
2 | .\objects\stm32f4xx_fsmc.o: .\LIB\SPL\inc\stm32f4xx_fsmc.h
3 | .\objects\stm32f4xx_fsmc.o: .\LIB\stm32f4xx.h
4 | .\objects\stm32f4xx_fsmc.o: C:\Keil_v5\ARM\PACK\ARM\CMSIS\5.0.1\CMSIS\Include\core_cm4.h
5 | .\objects\stm32f4xx_fsmc.o: C:\Keil_v5\ARM\ARMCC\Bin\..\include\stdint.h
6 | .\objects\stm32f4xx_fsmc.o: C:\Keil_v5\ARM\PACK\ARM\CMSIS\5.0.1\CMSIS\Include\cmsis_compiler.h
7 | .\objects\stm32f4xx_fsmc.o: C:\Keil_v5\ARM\PACK\ARM\CMSIS\5.0.1\CMSIS\Include\cmsis_armcc.h
8 | .\objects\stm32f4xx_fsmc.o: C:\Keil_v5\ARM\PACK\Keil\STM32F4xx_DFP\2.11.0\Drivers\CMSIS\Device\ST\STM32F4xx\Include\system_stm32f4xx.h
9 | .\objects\stm32f4xx_fsmc.o: .\LIB\stm32f4xx_conf.h
10 | .\objects\stm32f4xx_fsmc.o: .\LIB\SPL\inc\stm32f4xx_adc.h
11 | .\objects\stm32f4xx_fsmc.o: .\LIB\stm32f4xx.h
12 | .\objects\stm32f4xx_fsmc.o: .\LIB\SPL\inc\stm32f4xx_crc.h
13 | .\objects\stm32f4xx_fsmc.o: .\LIB\SPL\inc\stm32f4xx_dbgmcu.h
14 | .\objects\stm32f4xx_fsmc.o: .\LIB\SPL\inc\stm32f4xx_dma.h
15 | .\objects\stm32f4xx_fsmc.o: .\LIB\SPL\inc\stm32f4xx_exti.h
16 | .\objects\stm32f4xx_fsmc.o: .\LIB\SPL\inc\stm32f4xx_flash.h
17 | .\objects\stm32f4xx_fsmc.o: .\LIB\SPL\inc\stm32f4xx_gpio.h
18 | .\objects\stm32f4xx_fsmc.o: .\LIB\SPL\inc\stm32f4xx_i2c.h
19 | .\objects\stm32f4xx_fsmc.o: .\LIB\SPL\inc\stm32f4xx_iwdg.h
20 | .\objects\stm32f4xx_fsmc.o: .\LIB\SPL\inc\stm32f4xx_pwr.h
21 | .\objects\stm32f4xx_fsmc.o: .\LIB\SPL\inc\stm32f4xx_rcc.h
22 | .\objects\stm32f4xx_fsmc.o: .\LIB\SPL\inc\stm32f4xx_rtc.h
23 | .\objects\stm32f4xx_fsmc.o: .\LIB\SPL\inc\stm32f4xx_sdio.h
24 | .\objects\stm32f4xx_fsmc.o: .\LIB\SPL\inc\stm32f4xx_spi.h
25 | .\objects\stm32f4xx_fsmc.o: .\LIB\SPL\inc\stm32f4xx_syscfg.h
26 | .\objects\stm32f4xx_fsmc.o: .\LIB\SPL\inc\stm32f4xx_tim.h
27 | .\objects\stm32f4xx_fsmc.o: .\LIB\SPL\inc\stm32f4xx_usart.h
28 | .\objects\stm32f4xx_fsmc.o: .\LIB\SPL\inc\stm32f4xx_wwdg.h
29 | .\objects\stm32f4xx_fsmc.o: .\LIB\SPL\inc\misc.h
30 | .\objects\stm32f4xx_fsmc.o: .\LIB\SPL\inc\stm32f4xx_cryp.h
31 | .\objects\stm32f4xx_fsmc.o: .\LIB\SPL\inc\stm32f4xx_hash.h
32 | .\objects\stm32f4xx_fsmc.o: .\LIB\SPL\inc\stm32f4xx_rng.h
33 | .\objects\stm32f4xx_fsmc.o: .\LIB\SPL\inc\stm32f4xx_can.h
34 | .\objects\stm32f4xx_fsmc.o: .\LIB\SPL\inc\stm32f4xx_dac.h
35 | .\objects\stm32f4xx_fsmc.o: .\LIB\SPL\inc\stm32f4xx_dcmi.h
36 | .\objects\stm32f4xx_fsmc.o: .\LIB\SPL\inc\stm32f4xx_fsmc.h
37 |
--------------------------------------------------------------------------------
/Keil_Project/Objects/stm32f4xx_fsmc.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Keil_Project/Objects/stm32f4xx_fsmc.o
--------------------------------------------------------------------------------
/Keil_Project/Objects/stm32f4xx_gpio.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Keil_Project/Objects/stm32f4xx_gpio.crf
--------------------------------------------------------------------------------
/Keil_Project/Objects/stm32f4xx_gpio.d:
--------------------------------------------------------------------------------
1 | .\objects\stm32f4xx_gpio.o: LIB\SPL\src\stm32f4xx_gpio.c
2 | .\objects\stm32f4xx_gpio.o: .\LIB\SPL\inc\stm32f4xx_gpio.h
3 | .\objects\stm32f4xx_gpio.o: .\LIB\stm32f4xx.h
4 | .\objects\stm32f4xx_gpio.o: C:\Keil_v5\ARM\PACK\ARM\CMSIS\5.0.1\CMSIS\Include\core_cm4.h
5 | .\objects\stm32f4xx_gpio.o: C:\Keil_v5\ARM\ARMCC\Bin\..\include\stdint.h
6 | .\objects\stm32f4xx_gpio.o: C:\Keil_v5\ARM\PACK\ARM\CMSIS\5.0.1\CMSIS\Include\cmsis_compiler.h
7 | .\objects\stm32f4xx_gpio.o: C:\Keil_v5\ARM\PACK\ARM\CMSIS\5.0.1\CMSIS\Include\cmsis_armcc.h
8 | .\objects\stm32f4xx_gpio.o: C:\Keil_v5\ARM\PACK\Keil\STM32F4xx_DFP\2.11.0\Drivers\CMSIS\Device\ST\STM32F4xx\Include\system_stm32f4xx.h
9 | .\objects\stm32f4xx_gpio.o: .\LIB\stm32f4xx_conf.h
10 | .\objects\stm32f4xx_gpio.o: .\LIB\SPL\inc\stm32f4xx_adc.h
11 | .\objects\stm32f4xx_gpio.o: .\LIB\stm32f4xx.h
12 | .\objects\stm32f4xx_gpio.o: .\LIB\SPL\inc\stm32f4xx_crc.h
13 | .\objects\stm32f4xx_gpio.o: .\LIB\SPL\inc\stm32f4xx_dbgmcu.h
14 | .\objects\stm32f4xx_gpio.o: .\LIB\SPL\inc\stm32f4xx_dma.h
15 | .\objects\stm32f4xx_gpio.o: .\LIB\SPL\inc\stm32f4xx_exti.h
16 | .\objects\stm32f4xx_gpio.o: .\LIB\SPL\inc\stm32f4xx_flash.h
17 | .\objects\stm32f4xx_gpio.o: .\LIB\SPL\inc\stm32f4xx_gpio.h
18 | .\objects\stm32f4xx_gpio.o: .\LIB\SPL\inc\stm32f4xx_i2c.h
19 | .\objects\stm32f4xx_gpio.o: .\LIB\SPL\inc\stm32f4xx_iwdg.h
20 | .\objects\stm32f4xx_gpio.o: .\LIB\SPL\inc\stm32f4xx_pwr.h
21 | .\objects\stm32f4xx_gpio.o: .\LIB\SPL\inc\stm32f4xx_rcc.h
22 | .\objects\stm32f4xx_gpio.o: .\LIB\SPL\inc\stm32f4xx_rtc.h
23 | .\objects\stm32f4xx_gpio.o: .\LIB\SPL\inc\stm32f4xx_sdio.h
24 | .\objects\stm32f4xx_gpio.o: .\LIB\SPL\inc\stm32f4xx_spi.h
25 | .\objects\stm32f4xx_gpio.o: .\LIB\SPL\inc\stm32f4xx_syscfg.h
26 | .\objects\stm32f4xx_gpio.o: .\LIB\SPL\inc\stm32f4xx_tim.h
27 | .\objects\stm32f4xx_gpio.o: .\LIB\SPL\inc\stm32f4xx_usart.h
28 | .\objects\stm32f4xx_gpio.o: .\LIB\SPL\inc\stm32f4xx_wwdg.h
29 | .\objects\stm32f4xx_gpio.o: .\LIB\SPL\inc\misc.h
30 | .\objects\stm32f4xx_gpio.o: .\LIB\SPL\inc\stm32f4xx_cryp.h
31 | .\objects\stm32f4xx_gpio.o: .\LIB\SPL\inc\stm32f4xx_hash.h
32 | .\objects\stm32f4xx_gpio.o: .\LIB\SPL\inc\stm32f4xx_rng.h
33 | .\objects\stm32f4xx_gpio.o: .\LIB\SPL\inc\stm32f4xx_can.h
34 | .\objects\stm32f4xx_gpio.o: .\LIB\SPL\inc\stm32f4xx_dac.h
35 | .\objects\stm32f4xx_gpio.o: .\LIB\SPL\inc\stm32f4xx_dcmi.h
36 | .\objects\stm32f4xx_gpio.o: .\LIB\SPL\inc\stm32f4xx_fsmc.h
37 |
--------------------------------------------------------------------------------
/Keil_Project/Objects/stm32f4xx_gpio.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Keil_Project/Objects/stm32f4xx_gpio.o
--------------------------------------------------------------------------------
/Keil_Project/Objects/stm32f4xx_hash.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Keil_Project/Objects/stm32f4xx_hash.crf
--------------------------------------------------------------------------------
/Keil_Project/Objects/stm32f4xx_hash.d:
--------------------------------------------------------------------------------
1 | .\objects\stm32f4xx_hash.o: LIB\SPL\src\stm32f4xx_hash.c
2 | .\objects\stm32f4xx_hash.o: .\LIB\SPL\inc\stm32f4xx_hash.h
3 | .\objects\stm32f4xx_hash.o: .\LIB\stm32f4xx.h
4 | .\objects\stm32f4xx_hash.o: C:\Keil_v5\ARM\PACK\ARM\CMSIS\5.0.1\CMSIS\Include\core_cm4.h
5 | .\objects\stm32f4xx_hash.o: C:\Keil_v5\ARM\ARMCC\Bin\..\include\stdint.h
6 | .\objects\stm32f4xx_hash.o: C:\Keil_v5\ARM\PACK\ARM\CMSIS\5.0.1\CMSIS\Include\cmsis_compiler.h
7 | .\objects\stm32f4xx_hash.o: C:\Keil_v5\ARM\PACK\ARM\CMSIS\5.0.1\CMSIS\Include\cmsis_armcc.h
8 | .\objects\stm32f4xx_hash.o: C:\Keil_v5\ARM\PACK\Keil\STM32F4xx_DFP\2.11.0\Drivers\CMSIS\Device\ST\STM32F4xx\Include\system_stm32f4xx.h
9 | .\objects\stm32f4xx_hash.o: .\LIB\stm32f4xx_conf.h
10 | .\objects\stm32f4xx_hash.o: .\LIB\SPL\inc\stm32f4xx_adc.h
11 | .\objects\stm32f4xx_hash.o: .\LIB\stm32f4xx.h
12 | .\objects\stm32f4xx_hash.o: .\LIB\SPL\inc\stm32f4xx_crc.h
13 | .\objects\stm32f4xx_hash.o: .\LIB\SPL\inc\stm32f4xx_dbgmcu.h
14 | .\objects\stm32f4xx_hash.o: .\LIB\SPL\inc\stm32f4xx_dma.h
15 | .\objects\stm32f4xx_hash.o: .\LIB\SPL\inc\stm32f4xx_exti.h
16 | .\objects\stm32f4xx_hash.o: .\LIB\SPL\inc\stm32f4xx_flash.h
17 | .\objects\stm32f4xx_hash.o: .\LIB\SPL\inc\stm32f4xx_gpio.h
18 | .\objects\stm32f4xx_hash.o: .\LIB\SPL\inc\stm32f4xx_i2c.h
19 | .\objects\stm32f4xx_hash.o: .\LIB\SPL\inc\stm32f4xx_iwdg.h
20 | .\objects\stm32f4xx_hash.o: .\LIB\SPL\inc\stm32f4xx_pwr.h
21 | .\objects\stm32f4xx_hash.o: .\LIB\SPL\inc\stm32f4xx_rcc.h
22 | .\objects\stm32f4xx_hash.o: .\LIB\SPL\inc\stm32f4xx_rtc.h
23 | .\objects\stm32f4xx_hash.o: .\LIB\SPL\inc\stm32f4xx_sdio.h
24 | .\objects\stm32f4xx_hash.o: .\LIB\SPL\inc\stm32f4xx_spi.h
25 | .\objects\stm32f4xx_hash.o: .\LIB\SPL\inc\stm32f4xx_syscfg.h
26 | .\objects\stm32f4xx_hash.o: .\LIB\SPL\inc\stm32f4xx_tim.h
27 | .\objects\stm32f4xx_hash.o: .\LIB\SPL\inc\stm32f4xx_usart.h
28 | .\objects\stm32f4xx_hash.o: .\LIB\SPL\inc\stm32f4xx_wwdg.h
29 | .\objects\stm32f4xx_hash.o: .\LIB\SPL\inc\misc.h
30 | .\objects\stm32f4xx_hash.o: .\LIB\SPL\inc\stm32f4xx_cryp.h
31 | .\objects\stm32f4xx_hash.o: .\LIB\SPL\inc\stm32f4xx_hash.h
32 | .\objects\stm32f4xx_hash.o: .\LIB\SPL\inc\stm32f4xx_rng.h
33 | .\objects\stm32f4xx_hash.o: .\LIB\SPL\inc\stm32f4xx_can.h
34 | .\objects\stm32f4xx_hash.o: .\LIB\SPL\inc\stm32f4xx_dac.h
35 | .\objects\stm32f4xx_hash.o: .\LIB\SPL\inc\stm32f4xx_dcmi.h
36 | .\objects\stm32f4xx_hash.o: .\LIB\SPL\inc\stm32f4xx_fsmc.h
37 |
--------------------------------------------------------------------------------
/Keil_Project/Objects/stm32f4xx_hash.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Keil_Project/Objects/stm32f4xx_hash.o
--------------------------------------------------------------------------------
/Keil_Project/Objects/stm32f4xx_hash_md5.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Keil_Project/Objects/stm32f4xx_hash_md5.crf
--------------------------------------------------------------------------------
/Keil_Project/Objects/stm32f4xx_hash_md5.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Keil_Project/Objects/stm32f4xx_hash_md5.o
--------------------------------------------------------------------------------
/Keil_Project/Objects/stm32f4xx_hash_sha1.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Keil_Project/Objects/stm32f4xx_hash_sha1.crf
--------------------------------------------------------------------------------
/Keil_Project/Objects/stm32f4xx_hash_sha1.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Keil_Project/Objects/stm32f4xx_hash_sha1.o
--------------------------------------------------------------------------------
/Keil_Project/Objects/stm32f4xx_i2c.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Keil_Project/Objects/stm32f4xx_i2c.crf
--------------------------------------------------------------------------------
/Keil_Project/Objects/stm32f4xx_i2c.d:
--------------------------------------------------------------------------------
1 | .\objects\stm32f4xx_i2c.o: LIB\SPL\src\stm32f4xx_i2c.c
2 | .\objects\stm32f4xx_i2c.o: .\LIB\SPL\inc\stm32f4xx_i2c.h
3 | .\objects\stm32f4xx_i2c.o: .\LIB\stm32f4xx.h
4 | .\objects\stm32f4xx_i2c.o: C:\Keil_v5\ARM\PACK\ARM\CMSIS\5.0.1\CMSIS\Include\core_cm4.h
5 | .\objects\stm32f4xx_i2c.o: C:\Keil_v5\ARM\ARMCC\Bin\..\include\stdint.h
6 | .\objects\stm32f4xx_i2c.o: C:\Keil_v5\ARM\PACK\ARM\CMSIS\5.0.1\CMSIS\Include\cmsis_compiler.h
7 | .\objects\stm32f4xx_i2c.o: C:\Keil_v5\ARM\PACK\ARM\CMSIS\5.0.1\CMSIS\Include\cmsis_armcc.h
8 | .\objects\stm32f4xx_i2c.o: C:\Keil_v5\ARM\PACK\Keil\STM32F4xx_DFP\2.11.0\Drivers\CMSIS\Device\ST\STM32F4xx\Include\system_stm32f4xx.h
9 | .\objects\stm32f4xx_i2c.o: .\LIB\stm32f4xx_conf.h
10 | .\objects\stm32f4xx_i2c.o: .\LIB\SPL\inc\stm32f4xx_adc.h
11 | .\objects\stm32f4xx_i2c.o: .\LIB\stm32f4xx.h
12 | .\objects\stm32f4xx_i2c.o: .\LIB\SPL\inc\stm32f4xx_crc.h
13 | .\objects\stm32f4xx_i2c.o: .\LIB\SPL\inc\stm32f4xx_dbgmcu.h
14 | .\objects\stm32f4xx_i2c.o: .\LIB\SPL\inc\stm32f4xx_dma.h
15 | .\objects\stm32f4xx_i2c.o: .\LIB\SPL\inc\stm32f4xx_exti.h
16 | .\objects\stm32f4xx_i2c.o: .\LIB\SPL\inc\stm32f4xx_flash.h
17 | .\objects\stm32f4xx_i2c.o: .\LIB\SPL\inc\stm32f4xx_gpio.h
18 | .\objects\stm32f4xx_i2c.o: .\LIB\SPL\inc\stm32f4xx_i2c.h
19 | .\objects\stm32f4xx_i2c.o: .\LIB\SPL\inc\stm32f4xx_iwdg.h
20 | .\objects\stm32f4xx_i2c.o: .\LIB\SPL\inc\stm32f4xx_pwr.h
21 | .\objects\stm32f4xx_i2c.o: .\LIB\SPL\inc\stm32f4xx_rcc.h
22 | .\objects\stm32f4xx_i2c.o: .\LIB\SPL\inc\stm32f4xx_rtc.h
23 | .\objects\stm32f4xx_i2c.o: .\LIB\SPL\inc\stm32f4xx_sdio.h
24 | .\objects\stm32f4xx_i2c.o: .\LIB\SPL\inc\stm32f4xx_spi.h
25 | .\objects\stm32f4xx_i2c.o: .\LIB\SPL\inc\stm32f4xx_syscfg.h
26 | .\objects\stm32f4xx_i2c.o: .\LIB\SPL\inc\stm32f4xx_tim.h
27 | .\objects\stm32f4xx_i2c.o: .\LIB\SPL\inc\stm32f4xx_usart.h
28 | .\objects\stm32f4xx_i2c.o: .\LIB\SPL\inc\stm32f4xx_wwdg.h
29 | .\objects\stm32f4xx_i2c.o: .\LIB\SPL\inc\misc.h
30 | .\objects\stm32f4xx_i2c.o: .\LIB\SPL\inc\stm32f4xx_cryp.h
31 | .\objects\stm32f4xx_i2c.o: .\LIB\SPL\inc\stm32f4xx_hash.h
32 | .\objects\stm32f4xx_i2c.o: .\LIB\SPL\inc\stm32f4xx_rng.h
33 | .\objects\stm32f4xx_i2c.o: .\LIB\SPL\inc\stm32f4xx_can.h
34 | .\objects\stm32f4xx_i2c.o: .\LIB\SPL\inc\stm32f4xx_dac.h
35 | .\objects\stm32f4xx_i2c.o: .\LIB\SPL\inc\stm32f4xx_dcmi.h
36 | .\objects\stm32f4xx_i2c.o: .\LIB\SPL\inc\stm32f4xx_fsmc.h
37 |
--------------------------------------------------------------------------------
/Keil_Project/Objects/stm32f4xx_i2c.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Keil_Project/Objects/stm32f4xx_i2c.o
--------------------------------------------------------------------------------
/Keil_Project/Objects/stm32f4xx_iwdg.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Keil_Project/Objects/stm32f4xx_iwdg.crf
--------------------------------------------------------------------------------
/Keil_Project/Objects/stm32f4xx_iwdg.d:
--------------------------------------------------------------------------------
1 | .\objects\stm32f4xx_iwdg.o: LIB\SPL\src\stm32f4xx_iwdg.c
2 | .\objects\stm32f4xx_iwdg.o: .\LIB\SPL\inc\stm32f4xx_iwdg.h
3 | .\objects\stm32f4xx_iwdg.o: .\LIB\stm32f4xx.h
4 | .\objects\stm32f4xx_iwdg.o: C:\Keil_v5\ARM\PACK\ARM\CMSIS\5.0.1\CMSIS\Include\core_cm4.h
5 | .\objects\stm32f4xx_iwdg.o: C:\Keil_v5\ARM\ARMCC\Bin\..\include\stdint.h
6 | .\objects\stm32f4xx_iwdg.o: C:\Keil_v5\ARM\PACK\ARM\CMSIS\5.0.1\CMSIS\Include\cmsis_compiler.h
7 | .\objects\stm32f4xx_iwdg.o: C:\Keil_v5\ARM\PACK\ARM\CMSIS\5.0.1\CMSIS\Include\cmsis_armcc.h
8 | .\objects\stm32f4xx_iwdg.o: C:\Keil_v5\ARM\PACK\Keil\STM32F4xx_DFP\2.11.0\Drivers\CMSIS\Device\ST\STM32F4xx\Include\system_stm32f4xx.h
9 | .\objects\stm32f4xx_iwdg.o: .\LIB\stm32f4xx_conf.h
10 | .\objects\stm32f4xx_iwdg.o: .\LIB\SPL\inc\stm32f4xx_adc.h
11 | .\objects\stm32f4xx_iwdg.o: .\LIB\stm32f4xx.h
12 | .\objects\stm32f4xx_iwdg.o: .\LIB\SPL\inc\stm32f4xx_crc.h
13 | .\objects\stm32f4xx_iwdg.o: .\LIB\SPL\inc\stm32f4xx_dbgmcu.h
14 | .\objects\stm32f4xx_iwdg.o: .\LIB\SPL\inc\stm32f4xx_dma.h
15 | .\objects\stm32f4xx_iwdg.o: .\LIB\SPL\inc\stm32f4xx_exti.h
16 | .\objects\stm32f4xx_iwdg.o: .\LIB\SPL\inc\stm32f4xx_flash.h
17 | .\objects\stm32f4xx_iwdg.o: .\LIB\SPL\inc\stm32f4xx_gpio.h
18 | .\objects\stm32f4xx_iwdg.o: .\LIB\SPL\inc\stm32f4xx_i2c.h
19 | .\objects\stm32f4xx_iwdg.o: .\LIB\SPL\inc\stm32f4xx_iwdg.h
20 | .\objects\stm32f4xx_iwdg.o: .\LIB\SPL\inc\stm32f4xx_pwr.h
21 | .\objects\stm32f4xx_iwdg.o: .\LIB\SPL\inc\stm32f4xx_rcc.h
22 | .\objects\stm32f4xx_iwdg.o: .\LIB\SPL\inc\stm32f4xx_rtc.h
23 | .\objects\stm32f4xx_iwdg.o: .\LIB\SPL\inc\stm32f4xx_sdio.h
24 | .\objects\stm32f4xx_iwdg.o: .\LIB\SPL\inc\stm32f4xx_spi.h
25 | .\objects\stm32f4xx_iwdg.o: .\LIB\SPL\inc\stm32f4xx_syscfg.h
26 | .\objects\stm32f4xx_iwdg.o: .\LIB\SPL\inc\stm32f4xx_tim.h
27 | .\objects\stm32f4xx_iwdg.o: .\LIB\SPL\inc\stm32f4xx_usart.h
28 | .\objects\stm32f4xx_iwdg.o: .\LIB\SPL\inc\stm32f4xx_wwdg.h
29 | .\objects\stm32f4xx_iwdg.o: .\LIB\SPL\inc\misc.h
30 | .\objects\stm32f4xx_iwdg.o: .\LIB\SPL\inc\stm32f4xx_cryp.h
31 | .\objects\stm32f4xx_iwdg.o: .\LIB\SPL\inc\stm32f4xx_hash.h
32 | .\objects\stm32f4xx_iwdg.o: .\LIB\SPL\inc\stm32f4xx_rng.h
33 | .\objects\stm32f4xx_iwdg.o: .\LIB\SPL\inc\stm32f4xx_can.h
34 | .\objects\stm32f4xx_iwdg.o: .\LIB\SPL\inc\stm32f4xx_dac.h
35 | .\objects\stm32f4xx_iwdg.o: .\LIB\SPL\inc\stm32f4xx_dcmi.h
36 | .\objects\stm32f4xx_iwdg.o: .\LIB\SPL\inc\stm32f4xx_fsmc.h
37 |
--------------------------------------------------------------------------------
/Keil_Project/Objects/stm32f4xx_iwdg.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Keil_Project/Objects/stm32f4xx_iwdg.o
--------------------------------------------------------------------------------
/Keil_Project/Objects/stm32f4xx_lptim.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Keil_Project/Objects/stm32f4xx_lptim.crf
--------------------------------------------------------------------------------
/Keil_Project/Objects/stm32f4xx_lptim.d:
--------------------------------------------------------------------------------
1 | .\objects\stm32f4xx_lptim.o: LIB\SPL\src\stm32f4xx_lptim.c
2 | .\objects\stm32f4xx_lptim.o: .\LIB\SPL\inc\stm32f4xx_lptim.h
3 | .\objects\stm32f4xx_lptim.o: .\LIB\stm32f4xx.h
4 | .\objects\stm32f4xx_lptim.o: C:\Keil_v5\ARM\PACK\ARM\CMSIS\5.0.1\CMSIS\Include\core_cm4.h
5 | .\objects\stm32f4xx_lptim.o: C:\Keil_v5\ARM\ARMCC\Bin\..\include\stdint.h
6 | .\objects\stm32f4xx_lptim.o: C:\Keil_v5\ARM\PACK\ARM\CMSIS\5.0.1\CMSIS\Include\cmsis_compiler.h
7 | .\objects\stm32f4xx_lptim.o: C:\Keil_v5\ARM\PACK\ARM\CMSIS\5.0.1\CMSIS\Include\cmsis_armcc.h
8 | .\objects\stm32f4xx_lptim.o: C:\Keil_v5\ARM\PACK\Keil\STM32F4xx_DFP\2.11.0\Drivers\CMSIS\Device\ST\STM32F4xx\Include\system_stm32f4xx.h
9 | .\objects\stm32f4xx_lptim.o: .\LIB\stm32f4xx_conf.h
10 | .\objects\stm32f4xx_lptim.o: .\LIB\SPL\inc\stm32f4xx_adc.h
11 | .\objects\stm32f4xx_lptim.o: .\LIB\stm32f4xx.h
12 | .\objects\stm32f4xx_lptim.o: .\LIB\SPL\inc\stm32f4xx_crc.h
13 | .\objects\stm32f4xx_lptim.o: .\LIB\SPL\inc\stm32f4xx_dbgmcu.h
14 | .\objects\stm32f4xx_lptim.o: .\LIB\SPL\inc\stm32f4xx_dma.h
15 | .\objects\stm32f4xx_lptim.o: .\LIB\SPL\inc\stm32f4xx_exti.h
16 | .\objects\stm32f4xx_lptim.o: .\LIB\SPL\inc\stm32f4xx_flash.h
17 | .\objects\stm32f4xx_lptim.o: .\LIB\SPL\inc\stm32f4xx_gpio.h
18 | .\objects\stm32f4xx_lptim.o: .\LIB\SPL\inc\stm32f4xx_i2c.h
19 | .\objects\stm32f4xx_lptim.o: .\LIB\SPL\inc\stm32f4xx_iwdg.h
20 | .\objects\stm32f4xx_lptim.o: .\LIB\SPL\inc\stm32f4xx_pwr.h
21 | .\objects\stm32f4xx_lptim.o: .\LIB\SPL\inc\stm32f4xx_rcc.h
22 | .\objects\stm32f4xx_lptim.o: .\LIB\SPL\inc\stm32f4xx_rtc.h
23 | .\objects\stm32f4xx_lptim.o: .\LIB\SPL\inc\stm32f4xx_sdio.h
24 | .\objects\stm32f4xx_lptim.o: .\LIB\SPL\inc\stm32f4xx_spi.h
25 | .\objects\stm32f4xx_lptim.o: .\LIB\SPL\inc\stm32f4xx_syscfg.h
26 | .\objects\stm32f4xx_lptim.o: .\LIB\SPL\inc\stm32f4xx_tim.h
27 | .\objects\stm32f4xx_lptim.o: .\LIB\SPL\inc\stm32f4xx_usart.h
28 | .\objects\stm32f4xx_lptim.o: .\LIB\SPL\inc\stm32f4xx_wwdg.h
29 | .\objects\stm32f4xx_lptim.o: .\LIB\SPL\inc\misc.h
30 | .\objects\stm32f4xx_lptim.o: .\LIB\SPL\inc\stm32f4xx_cryp.h
31 | .\objects\stm32f4xx_lptim.o: .\LIB\SPL\inc\stm32f4xx_hash.h
32 | .\objects\stm32f4xx_lptim.o: .\LIB\SPL\inc\stm32f4xx_rng.h
33 | .\objects\stm32f4xx_lptim.o: .\LIB\SPL\inc\stm32f4xx_can.h
34 | .\objects\stm32f4xx_lptim.o: .\LIB\SPL\inc\stm32f4xx_dac.h
35 | .\objects\stm32f4xx_lptim.o: .\LIB\SPL\inc\stm32f4xx_dcmi.h
36 | .\objects\stm32f4xx_lptim.o: .\LIB\SPL\inc\stm32f4xx_fsmc.h
37 |
--------------------------------------------------------------------------------
/Keil_Project/Objects/stm32f4xx_lptim.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Keil_Project/Objects/stm32f4xx_lptim.o
--------------------------------------------------------------------------------
/Keil_Project/Objects/stm32f4xx_ltdc.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Keil_Project/Objects/stm32f4xx_ltdc.crf
--------------------------------------------------------------------------------
/Keil_Project/Objects/stm32f4xx_ltdc.d:
--------------------------------------------------------------------------------
1 | .\objects\stm32f4xx_ltdc.o: LIB\SPL\src\stm32f4xx_ltdc.c
2 | .\objects\stm32f4xx_ltdc.o: .\LIB\SPL\inc\stm32f4xx_ltdc.h
3 | .\objects\stm32f4xx_ltdc.o: .\LIB\stm32f4xx.h
4 | .\objects\stm32f4xx_ltdc.o: C:\Keil_v5\ARM\PACK\ARM\CMSIS\5.0.1\CMSIS\Include\core_cm4.h
5 | .\objects\stm32f4xx_ltdc.o: C:\Keil_v5\ARM\ARMCC\Bin\..\include\stdint.h
6 | .\objects\stm32f4xx_ltdc.o: C:\Keil_v5\ARM\PACK\ARM\CMSIS\5.0.1\CMSIS\Include\cmsis_compiler.h
7 | .\objects\stm32f4xx_ltdc.o: C:\Keil_v5\ARM\PACK\ARM\CMSIS\5.0.1\CMSIS\Include\cmsis_armcc.h
8 | .\objects\stm32f4xx_ltdc.o: C:\Keil_v5\ARM\PACK\Keil\STM32F4xx_DFP\2.11.0\Drivers\CMSIS\Device\ST\STM32F4xx\Include\system_stm32f4xx.h
9 | .\objects\stm32f4xx_ltdc.o: .\LIB\stm32f4xx_conf.h
10 | .\objects\stm32f4xx_ltdc.o: .\LIB\SPL\inc\stm32f4xx_adc.h
11 | .\objects\stm32f4xx_ltdc.o: .\LIB\stm32f4xx.h
12 | .\objects\stm32f4xx_ltdc.o: .\LIB\SPL\inc\stm32f4xx_crc.h
13 | .\objects\stm32f4xx_ltdc.o: .\LIB\SPL\inc\stm32f4xx_dbgmcu.h
14 | .\objects\stm32f4xx_ltdc.o: .\LIB\SPL\inc\stm32f4xx_dma.h
15 | .\objects\stm32f4xx_ltdc.o: .\LIB\SPL\inc\stm32f4xx_exti.h
16 | .\objects\stm32f4xx_ltdc.o: .\LIB\SPL\inc\stm32f4xx_flash.h
17 | .\objects\stm32f4xx_ltdc.o: .\LIB\SPL\inc\stm32f4xx_gpio.h
18 | .\objects\stm32f4xx_ltdc.o: .\LIB\SPL\inc\stm32f4xx_i2c.h
19 | .\objects\stm32f4xx_ltdc.o: .\LIB\SPL\inc\stm32f4xx_iwdg.h
20 | .\objects\stm32f4xx_ltdc.o: .\LIB\SPL\inc\stm32f4xx_pwr.h
21 | .\objects\stm32f4xx_ltdc.o: .\LIB\SPL\inc\stm32f4xx_rcc.h
22 | .\objects\stm32f4xx_ltdc.o: .\LIB\SPL\inc\stm32f4xx_rtc.h
23 | .\objects\stm32f4xx_ltdc.o: .\LIB\SPL\inc\stm32f4xx_sdio.h
24 | .\objects\stm32f4xx_ltdc.o: .\LIB\SPL\inc\stm32f4xx_spi.h
25 | .\objects\stm32f4xx_ltdc.o: .\LIB\SPL\inc\stm32f4xx_syscfg.h
26 | .\objects\stm32f4xx_ltdc.o: .\LIB\SPL\inc\stm32f4xx_tim.h
27 | .\objects\stm32f4xx_ltdc.o: .\LIB\SPL\inc\stm32f4xx_usart.h
28 | .\objects\stm32f4xx_ltdc.o: .\LIB\SPL\inc\stm32f4xx_wwdg.h
29 | .\objects\stm32f4xx_ltdc.o: .\LIB\SPL\inc\misc.h
30 | .\objects\stm32f4xx_ltdc.o: .\LIB\SPL\inc\stm32f4xx_cryp.h
31 | .\objects\stm32f4xx_ltdc.o: .\LIB\SPL\inc\stm32f4xx_hash.h
32 | .\objects\stm32f4xx_ltdc.o: .\LIB\SPL\inc\stm32f4xx_rng.h
33 | .\objects\stm32f4xx_ltdc.o: .\LIB\SPL\inc\stm32f4xx_can.h
34 | .\objects\stm32f4xx_ltdc.o: .\LIB\SPL\inc\stm32f4xx_dac.h
35 | .\objects\stm32f4xx_ltdc.o: .\LIB\SPL\inc\stm32f4xx_dcmi.h
36 | .\objects\stm32f4xx_ltdc.o: .\LIB\SPL\inc\stm32f4xx_fsmc.h
37 |
--------------------------------------------------------------------------------
/Keil_Project/Objects/stm32f4xx_ltdc.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Keil_Project/Objects/stm32f4xx_ltdc.o
--------------------------------------------------------------------------------
/Keil_Project/Objects/stm32f4xx_pwr.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Keil_Project/Objects/stm32f4xx_pwr.crf
--------------------------------------------------------------------------------
/Keil_Project/Objects/stm32f4xx_pwr.d:
--------------------------------------------------------------------------------
1 | .\objects\stm32f4xx_pwr.o: LIB\SPL\src\stm32f4xx_pwr.c
2 | .\objects\stm32f4xx_pwr.o: .\LIB\SPL\inc\stm32f4xx_pwr.h
3 | .\objects\stm32f4xx_pwr.o: .\LIB\stm32f4xx.h
4 | .\objects\stm32f4xx_pwr.o: C:\Keil_v5\ARM\PACK\ARM\CMSIS\5.0.1\CMSIS\Include\core_cm4.h
5 | .\objects\stm32f4xx_pwr.o: C:\Keil_v5\ARM\ARMCC\Bin\..\include\stdint.h
6 | .\objects\stm32f4xx_pwr.o: C:\Keil_v5\ARM\PACK\ARM\CMSIS\5.0.1\CMSIS\Include\cmsis_compiler.h
7 | .\objects\stm32f4xx_pwr.o: C:\Keil_v5\ARM\PACK\ARM\CMSIS\5.0.1\CMSIS\Include\cmsis_armcc.h
8 | .\objects\stm32f4xx_pwr.o: C:\Keil_v5\ARM\PACK\Keil\STM32F4xx_DFP\2.11.0\Drivers\CMSIS\Device\ST\STM32F4xx\Include\system_stm32f4xx.h
9 | .\objects\stm32f4xx_pwr.o: .\LIB\stm32f4xx_conf.h
10 | .\objects\stm32f4xx_pwr.o: .\LIB\SPL\inc\stm32f4xx_adc.h
11 | .\objects\stm32f4xx_pwr.o: .\LIB\stm32f4xx.h
12 | .\objects\stm32f4xx_pwr.o: .\LIB\SPL\inc\stm32f4xx_crc.h
13 | .\objects\stm32f4xx_pwr.o: .\LIB\SPL\inc\stm32f4xx_dbgmcu.h
14 | .\objects\stm32f4xx_pwr.o: .\LIB\SPL\inc\stm32f4xx_dma.h
15 | .\objects\stm32f4xx_pwr.o: .\LIB\SPL\inc\stm32f4xx_exti.h
16 | .\objects\stm32f4xx_pwr.o: .\LIB\SPL\inc\stm32f4xx_flash.h
17 | .\objects\stm32f4xx_pwr.o: .\LIB\SPL\inc\stm32f4xx_gpio.h
18 | .\objects\stm32f4xx_pwr.o: .\LIB\SPL\inc\stm32f4xx_i2c.h
19 | .\objects\stm32f4xx_pwr.o: .\LIB\SPL\inc\stm32f4xx_iwdg.h
20 | .\objects\stm32f4xx_pwr.o: .\LIB\SPL\inc\stm32f4xx_pwr.h
21 | .\objects\stm32f4xx_pwr.o: .\LIB\SPL\inc\stm32f4xx_rcc.h
22 | .\objects\stm32f4xx_pwr.o: .\LIB\SPL\inc\stm32f4xx_rtc.h
23 | .\objects\stm32f4xx_pwr.o: .\LIB\SPL\inc\stm32f4xx_sdio.h
24 | .\objects\stm32f4xx_pwr.o: .\LIB\SPL\inc\stm32f4xx_spi.h
25 | .\objects\stm32f4xx_pwr.o: .\LIB\SPL\inc\stm32f4xx_syscfg.h
26 | .\objects\stm32f4xx_pwr.o: .\LIB\SPL\inc\stm32f4xx_tim.h
27 | .\objects\stm32f4xx_pwr.o: .\LIB\SPL\inc\stm32f4xx_usart.h
28 | .\objects\stm32f4xx_pwr.o: .\LIB\SPL\inc\stm32f4xx_wwdg.h
29 | .\objects\stm32f4xx_pwr.o: .\LIB\SPL\inc\misc.h
30 | .\objects\stm32f4xx_pwr.o: .\LIB\SPL\inc\stm32f4xx_cryp.h
31 | .\objects\stm32f4xx_pwr.o: .\LIB\SPL\inc\stm32f4xx_hash.h
32 | .\objects\stm32f4xx_pwr.o: .\LIB\SPL\inc\stm32f4xx_rng.h
33 | .\objects\stm32f4xx_pwr.o: .\LIB\SPL\inc\stm32f4xx_can.h
34 | .\objects\stm32f4xx_pwr.o: .\LIB\SPL\inc\stm32f4xx_dac.h
35 | .\objects\stm32f4xx_pwr.o: .\LIB\SPL\inc\stm32f4xx_dcmi.h
36 | .\objects\stm32f4xx_pwr.o: .\LIB\SPL\inc\stm32f4xx_fsmc.h
37 |
--------------------------------------------------------------------------------
/Keil_Project/Objects/stm32f4xx_pwr.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Keil_Project/Objects/stm32f4xx_pwr.o
--------------------------------------------------------------------------------
/Keil_Project/Objects/stm32f4xx_qspi.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Keil_Project/Objects/stm32f4xx_qspi.crf
--------------------------------------------------------------------------------
/Keil_Project/Objects/stm32f4xx_qspi.d:
--------------------------------------------------------------------------------
1 | .\objects\stm32f4xx_qspi.o: LIB\SPL\src\stm32f4xx_qspi.c
2 | .\objects\stm32f4xx_qspi.o: .\LIB\SPL\inc\stm32f4xx_qspi.h
3 | .\objects\stm32f4xx_qspi.o: .\LIB\stm32f4xx.h
4 | .\objects\stm32f4xx_qspi.o: C:\Keil_v5\ARM\PACK\ARM\CMSIS\5.0.1\CMSIS\Include\core_cm4.h
5 | .\objects\stm32f4xx_qspi.o: C:\Keil_v5\ARM\ARMCC\Bin\..\include\stdint.h
6 | .\objects\stm32f4xx_qspi.o: C:\Keil_v5\ARM\PACK\ARM\CMSIS\5.0.1\CMSIS\Include\cmsis_compiler.h
7 | .\objects\stm32f4xx_qspi.o: C:\Keil_v5\ARM\PACK\ARM\CMSIS\5.0.1\CMSIS\Include\cmsis_armcc.h
8 | .\objects\stm32f4xx_qspi.o: C:\Keil_v5\ARM\PACK\Keil\STM32F4xx_DFP\2.11.0\Drivers\CMSIS\Device\ST\STM32F4xx\Include\system_stm32f4xx.h
9 | .\objects\stm32f4xx_qspi.o: .\LIB\stm32f4xx_conf.h
10 | .\objects\stm32f4xx_qspi.o: .\LIB\SPL\inc\stm32f4xx_adc.h
11 | .\objects\stm32f4xx_qspi.o: .\LIB\stm32f4xx.h
12 | .\objects\stm32f4xx_qspi.o: .\LIB\SPL\inc\stm32f4xx_crc.h
13 | .\objects\stm32f4xx_qspi.o: .\LIB\SPL\inc\stm32f4xx_dbgmcu.h
14 | .\objects\stm32f4xx_qspi.o: .\LIB\SPL\inc\stm32f4xx_dma.h
15 | .\objects\stm32f4xx_qspi.o: .\LIB\SPL\inc\stm32f4xx_exti.h
16 | .\objects\stm32f4xx_qspi.o: .\LIB\SPL\inc\stm32f4xx_flash.h
17 | .\objects\stm32f4xx_qspi.o: .\LIB\SPL\inc\stm32f4xx_gpio.h
18 | .\objects\stm32f4xx_qspi.o: .\LIB\SPL\inc\stm32f4xx_i2c.h
19 | .\objects\stm32f4xx_qspi.o: .\LIB\SPL\inc\stm32f4xx_iwdg.h
20 | .\objects\stm32f4xx_qspi.o: .\LIB\SPL\inc\stm32f4xx_pwr.h
21 | .\objects\stm32f4xx_qspi.o: .\LIB\SPL\inc\stm32f4xx_rcc.h
22 | .\objects\stm32f4xx_qspi.o: .\LIB\SPL\inc\stm32f4xx_rtc.h
23 | .\objects\stm32f4xx_qspi.o: .\LIB\SPL\inc\stm32f4xx_sdio.h
24 | .\objects\stm32f4xx_qspi.o: .\LIB\SPL\inc\stm32f4xx_spi.h
25 | .\objects\stm32f4xx_qspi.o: .\LIB\SPL\inc\stm32f4xx_syscfg.h
26 | .\objects\stm32f4xx_qspi.o: .\LIB\SPL\inc\stm32f4xx_tim.h
27 | .\objects\stm32f4xx_qspi.o: .\LIB\SPL\inc\stm32f4xx_usart.h
28 | .\objects\stm32f4xx_qspi.o: .\LIB\SPL\inc\stm32f4xx_wwdg.h
29 | .\objects\stm32f4xx_qspi.o: .\LIB\SPL\inc\misc.h
30 | .\objects\stm32f4xx_qspi.o: .\LIB\SPL\inc\stm32f4xx_cryp.h
31 | .\objects\stm32f4xx_qspi.o: .\LIB\SPL\inc\stm32f4xx_hash.h
32 | .\objects\stm32f4xx_qspi.o: .\LIB\SPL\inc\stm32f4xx_rng.h
33 | .\objects\stm32f4xx_qspi.o: .\LIB\SPL\inc\stm32f4xx_can.h
34 | .\objects\stm32f4xx_qspi.o: .\LIB\SPL\inc\stm32f4xx_dac.h
35 | .\objects\stm32f4xx_qspi.o: .\LIB\SPL\inc\stm32f4xx_dcmi.h
36 | .\objects\stm32f4xx_qspi.o: .\LIB\SPL\inc\stm32f4xx_fsmc.h
37 |
--------------------------------------------------------------------------------
/Keil_Project/Objects/stm32f4xx_qspi.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Keil_Project/Objects/stm32f4xx_qspi.o
--------------------------------------------------------------------------------
/Keil_Project/Objects/stm32f4xx_rcc.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Keil_Project/Objects/stm32f4xx_rcc.crf
--------------------------------------------------------------------------------
/Keil_Project/Objects/stm32f4xx_rcc.d:
--------------------------------------------------------------------------------
1 | .\objects\stm32f4xx_rcc.o: LIB\SPL\src\stm32f4xx_rcc.c
2 | .\objects\stm32f4xx_rcc.o: .\LIB\SPL\inc\stm32f4xx_rcc.h
3 | .\objects\stm32f4xx_rcc.o: .\LIB\stm32f4xx.h
4 | .\objects\stm32f4xx_rcc.o: C:\Keil_v5\ARM\PACK\ARM\CMSIS\5.0.1\CMSIS\Include\core_cm4.h
5 | .\objects\stm32f4xx_rcc.o: C:\Keil_v5\ARM\ARMCC\Bin\..\include\stdint.h
6 | .\objects\stm32f4xx_rcc.o: C:\Keil_v5\ARM\PACK\ARM\CMSIS\5.0.1\CMSIS\Include\cmsis_compiler.h
7 | .\objects\stm32f4xx_rcc.o: C:\Keil_v5\ARM\PACK\ARM\CMSIS\5.0.1\CMSIS\Include\cmsis_armcc.h
8 | .\objects\stm32f4xx_rcc.o: C:\Keil_v5\ARM\PACK\Keil\STM32F4xx_DFP\2.11.0\Drivers\CMSIS\Device\ST\STM32F4xx\Include\system_stm32f4xx.h
9 | .\objects\stm32f4xx_rcc.o: .\LIB\stm32f4xx_conf.h
10 | .\objects\stm32f4xx_rcc.o: .\LIB\SPL\inc\stm32f4xx_adc.h
11 | .\objects\stm32f4xx_rcc.o: .\LIB\stm32f4xx.h
12 | .\objects\stm32f4xx_rcc.o: .\LIB\SPL\inc\stm32f4xx_crc.h
13 | .\objects\stm32f4xx_rcc.o: .\LIB\SPL\inc\stm32f4xx_dbgmcu.h
14 | .\objects\stm32f4xx_rcc.o: .\LIB\SPL\inc\stm32f4xx_dma.h
15 | .\objects\stm32f4xx_rcc.o: .\LIB\SPL\inc\stm32f4xx_exti.h
16 | .\objects\stm32f4xx_rcc.o: .\LIB\SPL\inc\stm32f4xx_flash.h
17 | .\objects\stm32f4xx_rcc.o: .\LIB\SPL\inc\stm32f4xx_gpio.h
18 | .\objects\stm32f4xx_rcc.o: .\LIB\SPL\inc\stm32f4xx_i2c.h
19 | .\objects\stm32f4xx_rcc.o: .\LIB\SPL\inc\stm32f4xx_iwdg.h
20 | .\objects\stm32f4xx_rcc.o: .\LIB\SPL\inc\stm32f4xx_pwr.h
21 | .\objects\stm32f4xx_rcc.o: .\LIB\SPL\inc\stm32f4xx_rcc.h
22 | .\objects\stm32f4xx_rcc.o: .\LIB\SPL\inc\stm32f4xx_rtc.h
23 | .\objects\stm32f4xx_rcc.o: .\LIB\SPL\inc\stm32f4xx_sdio.h
24 | .\objects\stm32f4xx_rcc.o: .\LIB\SPL\inc\stm32f4xx_spi.h
25 | .\objects\stm32f4xx_rcc.o: .\LIB\SPL\inc\stm32f4xx_syscfg.h
26 | .\objects\stm32f4xx_rcc.o: .\LIB\SPL\inc\stm32f4xx_tim.h
27 | .\objects\stm32f4xx_rcc.o: .\LIB\SPL\inc\stm32f4xx_usart.h
28 | .\objects\stm32f4xx_rcc.o: .\LIB\SPL\inc\stm32f4xx_wwdg.h
29 | .\objects\stm32f4xx_rcc.o: .\LIB\SPL\inc\misc.h
30 | .\objects\stm32f4xx_rcc.o: .\LIB\SPL\inc\stm32f4xx_cryp.h
31 | .\objects\stm32f4xx_rcc.o: .\LIB\SPL\inc\stm32f4xx_hash.h
32 | .\objects\stm32f4xx_rcc.o: .\LIB\SPL\inc\stm32f4xx_rng.h
33 | .\objects\stm32f4xx_rcc.o: .\LIB\SPL\inc\stm32f4xx_can.h
34 | .\objects\stm32f4xx_rcc.o: .\LIB\SPL\inc\stm32f4xx_dac.h
35 | .\objects\stm32f4xx_rcc.o: .\LIB\SPL\inc\stm32f4xx_dcmi.h
36 | .\objects\stm32f4xx_rcc.o: .\LIB\SPL\inc\stm32f4xx_fsmc.h
37 |
--------------------------------------------------------------------------------
/Keil_Project/Objects/stm32f4xx_rcc.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Keil_Project/Objects/stm32f4xx_rcc.o
--------------------------------------------------------------------------------
/Keil_Project/Objects/stm32f4xx_rng.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Keil_Project/Objects/stm32f4xx_rng.crf
--------------------------------------------------------------------------------
/Keil_Project/Objects/stm32f4xx_rng.d:
--------------------------------------------------------------------------------
1 | .\objects\stm32f4xx_rng.o: LIB\SPL\src\stm32f4xx_rng.c
2 | .\objects\stm32f4xx_rng.o: .\LIB\SPL\inc\stm32f4xx_rng.h
3 | .\objects\stm32f4xx_rng.o: .\LIB\stm32f4xx.h
4 | .\objects\stm32f4xx_rng.o: C:\Keil_v5\ARM\PACK\ARM\CMSIS\5.0.1\CMSIS\Include\core_cm4.h
5 | .\objects\stm32f4xx_rng.o: C:\Keil_v5\ARM\ARMCC\Bin\..\include\stdint.h
6 | .\objects\stm32f4xx_rng.o: C:\Keil_v5\ARM\PACK\ARM\CMSIS\5.0.1\CMSIS\Include\cmsis_compiler.h
7 | .\objects\stm32f4xx_rng.o: C:\Keil_v5\ARM\PACK\ARM\CMSIS\5.0.1\CMSIS\Include\cmsis_armcc.h
8 | .\objects\stm32f4xx_rng.o: C:\Keil_v5\ARM\PACK\Keil\STM32F4xx_DFP\2.11.0\Drivers\CMSIS\Device\ST\STM32F4xx\Include\system_stm32f4xx.h
9 | .\objects\stm32f4xx_rng.o: .\LIB\stm32f4xx_conf.h
10 | .\objects\stm32f4xx_rng.o: .\LIB\SPL\inc\stm32f4xx_adc.h
11 | .\objects\stm32f4xx_rng.o: .\LIB\stm32f4xx.h
12 | .\objects\stm32f4xx_rng.o: .\LIB\SPL\inc\stm32f4xx_crc.h
13 | .\objects\stm32f4xx_rng.o: .\LIB\SPL\inc\stm32f4xx_dbgmcu.h
14 | .\objects\stm32f4xx_rng.o: .\LIB\SPL\inc\stm32f4xx_dma.h
15 | .\objects\stm32f4xx_rng.o: .\LIB\SPL\inc\stm32f4xx_exti.h
16 | .\objects\stm32f4xx_rng.o: .\LIB\SPL\inc\stm32f4xx_flash.h
17 | .\objects\stm32f4xx_rng.o: .\LIB\SPL\inc\stm32f4xx_gpio.h
18 | .\objects\stm32f4xx_rng.o: .\LIB\SPL\inc\stm32f4xx_i2c.h
19 | .\objects\stm32f4xx_rng.o: .\LIB\SPL\inc\stm32f4xx_iwdg.h
20 | .\objects\stm32f4xx_rng.o: .\LIB\SPL\inc\stm32f4xx_pwr.h
21 | .\objects\stm32f4xx_rng.o: .\LIB\SPL\inc\stm32f4xx_rcc.h
22 | .\objects\stm32f4xx_rng.o: .\LIB\SPL\inc\stm32f4xx_rtc.h
23 | .\objects\stm32f4xx_rng.o: .\LIB\SPL\inc\stm32f4xx_sdio.h
24 | .\objects\stm32f4xx_rng.o: .\LIB\SPL\inc\stm32f4xx_spi.h
25 | .\objects\stm32f4xx_rng.o: .\LIB\SPL\inc\stm32f4xx_syscfg.h
26 | .\objects\stm32f4xx_rng.o: .\LIB\SPL\inc\stm32f4xx_tim.h
27 | .\objects\stm32f4xx_rng.o: .\LIB\SPL\inc\stm32f4xx_usart.h
28 | .\objects\stm32f4xx_rng.o: .\LIB\SPL\inc\stm32f4xx_wwdg.h
29 | .\objects\stm32f4xx_rng.o: .\LIB\SPL\inc\misc.h
30 | .\objects\stm32f4xx_rng.o: .\LIB\SPL\inc\stm32f4xx_cryp.h
31 | .\objects\stm32f4xx_rng.o: .\LIB\SPL\inc\stm32f4xx_hash.h
32 | .\objects\stm32f4xx_rng.o: .\LIB\SPL\inc\stm32f4xx_rng.h
33 | .\objects\stm32f4xx_rng.o: .\LIB\SPL\inc\stm32f4xx_can.h
34 | .\objects\stm32f4xx_rng.o: .\LIB\SPL\inc\stm32f4xx_dac.h
35 | .\objects\stm32f4xx_rng.o: .\LIB\SPL\inc\stm32f4xx_dcmi.h
36 | .\objects\stm32f4xx_rng.o: .\LIB\SPL\inc\stm32f4xx_fsmc.h
37 |
--------------------------------------------------------------------------------
/Keil_Project/Objects/stm32f4xx_rng.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Keil_Project/Objects/stm32f4xx_rng.o
--------------------------------------------------------------------------------
/Keil_Project/Objects/stm32f4xx_rtc.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Keil_Project/Objects/stm32f4xx_rtc.crf
--------------------------------------------------------------------------------
/Keil_Project/Objects/stm32f4xx_rtc.d:
--------------------------------------------------------------------------------
1 | .\objects\stm32f4xx_rtc.o: LIB\SPL\src\stm32f4xx_rtc.c
2 | .\objects\stm32f4xx_rtc.o: .\LIB\SPL\inc\stm32f4xx_rtc.h
3 | .\objects\stm32f4xx_rtc.o: .\LIB\stm32f4xx.h
4 | .\objects\stm32f4xx_rtc.o: C:\Keil_v5\ARM\PACK\ARM\CMSIS\5.0.1\CMSIS\Include\core_cm4.h
5 | .\objects\stm32f4xx_rtc.o: C:\Keil_v5\ARM\ARMCC\Bin\..\include\stdint.h
6 | .\objects\stm32f4xx_rtc.o: C:\Keil_v5\ARM\PACK\ARM\CMSIS\5.0.1\CMSIS\Include\cmsis_compiler.h
7 | .\objects\stm32f4xx_rtc.o: C:\Keil_v5\ARM\PACK\ARM\CMSIS\5.0.1\CMSIS\Include\cmsis_armcc.h
8 | .\objects\stm32f4xx_rtc.o: C:\Keil_v5\ARM\PACK\Keil\STM32F4xx_DFP\2.11.0\Drivers\CMSIS\Device\ST\STM32F4xx\Include\system_stm32f4xx.h
9 | .\objects\stm32f4xx_rtc.o: .\LIB\stm32f4xx_conf.h
10 | .\objects\stm32f4xx_rtc.o: .\LIB\SPL\inc\stm32f4xx_adc.h
11 | .\objects\stm32f4xx_rtc.o: .\LIB\stm32f4xx.h
12 | .\objects\stm32f4xx_rtc.o: .\LIB\SPL\inc\stm32f4xx_crc.h
13 | .\objects\stm32f4xx_rtc.o: .\LIB\SPL\inc\stm32f4xx_dbgmcu.h
14 | .\objects\stm32f4xx_rtc.o: .\LIB\SPL\inc\stm32f4xx_dma.h
15 | .\objects\stm32f4xx_rtc.o: .\LIB\SPL\inc\stm32f4xx_exti.h
16 | .\objects\stm32f4xx_rtc.o: .\LIB\SPL\inc\stm32f4xx_flash.h
17 | .\objects\stm32f4xx_rtc.o: .\LIB\SPL\inc\stm32f4xx_gpio.h
18 | .\objects\stm32f4xx_rtc.o: .\LIB\SPL\inc\stm32f4xx_i2c.h
19 | .\objects\stm32f4xx_rtc.o: .\LIB\SPL\inc\stm32f4xx_iwdg.h
20 | .\objects\stm32f4xx_rtc.o: .\LIB\SPL\inc\stm32f4xx_pwr.h
21 | .\objects\stm32f4xx_rtc.o: .\LIB\SPL\inc\stm32f4xx_rcc.h
22 | .\objects\stm32f4xx_rtc.o: .\LIB\SPL\inc\stm32f4xx_rtc.h
23 | .\objects\stm32f4xx_rtc.o: .\LIB\SPL\inc\stm32f4xx_sdio.h
24 | .\objects\stm32f4xx_rtc.o: .\LIB\SPL\inc\stm32f4xx_spi.h
25 | .\objects\stm32f4xx_rtc.o: .\LIB\SPL\inc\stm32f4xx_syscfg.h
26 | .\objects\stm32f4xx_rtc.o: .\LIB\SPL\inc\stm32f4xx_tim.h
27 | .\objects\stm32f4xx_rtc.o: .\LIB\SPL\inc\stm32f4xx_usart.h
28 | .\objects\stm32f4xx_rtc.o: .\LIB\SPL\inc\stm32f4xx_wwdg.h
29 | .\objects\stm32f4xx_rtc.o: .\LIB\SPL\inc\misc.h
30 | .\objects\stm32f4xx_rtc.o: .\LIB\SPL\inc\stm32f4xx_cryp.h
31 | .\objects\stm32f4xx_rtc.o: .\LIB\SPL\inc\stm32f4xx_hash.h
32 | .\objects\stm32f4xx_rtc.o: .\LIB\SPL\inc\stm32f4xx_rng.h
33 | .\objects\stm32f4xx_rtc.o: .\LIB\SPL\inc\stm32f4xx_can.h
34 | .\objects\stm32f4xx_rtc.o: .\LIB\SPL\inc\stm32f4xx_dac.h
35 | .\objects\stm32f4xx_rtc.o: .\LIB\SPL\inc\stm32f4xx_dcmi.h
36 | .\objects\stm32f4xx_rtc.o: .\LIB\SPL\inc\stm32f4xx_fsmc.h
37 |
--------------------------------------------------------------------------------
/Keil_Project/Objects/stm32f4xx_rtc.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Keil_Project/Objects/stm32f4xx_rtc.o
--------------------------------------------------------------------------------
/Keil_Project/Objects/stm32f4xx_sai.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Keil_Project/Objects/stm32f4xx_sai.crf
--------------------------------------------------------------------------------
/Keil_Project/Objects/stm32f4xx_sai.d:
--------------------------------------------------------------------------------
1 | .\objects\stm32f4xx_sai.o: LIB\SPL\src\stm32f4xx_sai.c
2 | .\objects\stm32f4xx_sai.o: .\LIB\SPL\inc\stm32f4xx_sai.h
3 | .\objects\stm32f4xx_sai.o: .\LIB\stm32f4xx.h
4 | .\objects\stm32f4xx_sai.o: C:\Keil_v5\ARM\PACK\ARM\CMSIS\5.0.1\CMSIS\Include\core_cm4.h
5 | .\objects\stm32f4xx_sai.o: C:\Keil_v5\ARM\ARMCC\Bin\..\include\stdint.h
6 | .\objects\stm32f4xx_sai.o: C:\Keil_v5\ARM\PACK\ARM\CMSIS\5.0.1\CMSIS\Include\cmsis_compiler.h
7 | .\objects\stm32f4xx_sai.o: C:\Keil_v5\ARM\PACK\ARM\CMSIS\5.0.1\CMSIS\Include\cmsis_armcc.h
8 | .\objects\stm32f4xx_sai.o: C:\Keil_v5\ARM\PACK\Keil\STM32F4xx_DFP\2.11.0\Drivers\CMSIS\Device\ST\STM32F4xx\Include\system_stm32f4xx.h
9 | .\objects\stm32f4xx_sai.o: .\LIB\stm32f4xx_conf.h
10 | .\objects\stm32f4xx_sai.o: .\LIB\SPL\inc\stm32f4xx_adc.h
11 | .\objects\stm32f4xx_sai.o: .\LIB\stm32f4xx.h
12 | .\objects\stm32f4xx_sai.o: .\LIB\SPL\inc\stm32f4xx_crc.h
13 | .\objects\stm32f4xx_sai.o: .\LIB\SPL\inc\stm32f4xx_dbgmcu.h
14 | .\objects\stm32f4xx_sai.o: .\LIB\SPL\inc\stm32f4xx_dma.h
15 | .\objects\stm32f4xx_sai.o: .\LIB\SPL\inc\stm32f4xx_exti.h
16 | .\objects\stm32f4xx_sai.o: .\LIB\SPL\inc\stm32f4xx_flash.h
17 | .\objects\stm32f4xx_sai.o: .\LIB\SPL\inc\stm32f4xx_gpio.h
18 | .\objects\stm32f4xx_sai.o: .\LIB\SPL\inc\stm32f4xx_i2c.h
19 | .\objects\stm32f4xx_sai.o: .\LIB\SPL\inc\stm32f4xx_iwdg.h
20 | .\objects\stm32f4xx_sai.o: .\LIB\SPL\inc\stm32f4xx_pwr.h
21 | .\objects\stm32f4xx_sai.o: .\LIB\SPL\inc\stm32f4xx_rcc.h
22 | .\objects\stm32f4xx_sai.o: .\LIB\SPL\inc\stm32f4xx_rtc.h
23 | .\objects\stm32f4xx_sai.o: .\LIB\SPL\inc\stm32f4xx_sdio.h
24 | .\objects\stm32f4xx_sai.o: .\LIB\SPL\inc\stm32f4xx_spi.h
25 | .\objects\stm32f4xx_sai.o: .\LIB\SPL\inc\stm32f4xx_syscfg.h
26 | .\objects\stm32f4xx_sai.o: .\LIB\SPL\inc\stm32f4xx_tim.h
27 | .\objects\stm32f4xx_sai.o: .\LIB\SPL\inc\stm32f4xx_usart.h
28 | .\objects\stm32f4xx_sai.o: .\LIB\SPL\inc\stm32f4xx_wwdg.h
29 | .\objects\stm32f4xx_sai.o: .\LIB\SPL\inc\misc.h
30 | .\objects\stm32f4xx_sai.o: .\LIB\SPL\inc\stm32f4xx_cryp.h
31 | .\objects\stm32f4xx_sai.o: .\LIB\SPL\inc\stm32f4xx_hash.h
32 | .\objects\stm32f4xx_sai.o: .\LIB\SPL\inc\stm32f4xx_rng.h
33 | .\objects\stm32f4xx_sai.o: .\LIB\SPL\inc\stm32f4xx_can.h
34 | .\objects\stm32f4xx_sai.o: .\LIB\SPL\inc\stm32f4xx_dac.h
35 | .\objects\stm32f4xx_sai.o: .\LIB\SPL\inc\stm32f4xx_dcmi.h
36 | .\objects\stm32f4xx_sai.o: .\LIB\SPL\inc\stm32f4xx_fsmc.h
37 |
--------------------------------------------------------------------------------
/Keil_Project/Objects/stm32f4xx_sai.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Keil_Project/Objects/stm32f4xx_sai.o
--------------------------------------------------------------------------------
/Keil_Project/Objects/stm32f4xx_sdio.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Keil_Project/Objects/stm32f4xx_sdio.crf
--------------------------------------------------------------------------------
/Keil_Project/Objects/stm32f4xx_sdio.d:
--------------------------------------------------------------------------------
1 | .\objects\stm32f4xx_sdio.o: LIB\SPL\src\stm32f4xx_sdio.c
2 | .\objects\stm32f4xx_sdio.o: .\LIB\SPL\inc\stm32f4xx_sdio.h
3 | .\objects\stm32f4xx_sdio.o: .\LIB\stm32f4xx.h
4 | .\objects\stm32f4xx_sdio.o: C:\Keil_v5\ARM\PACK\ARM\CMSIS\5.0.1\CMSIS\Include\core_cm4.h
5 | .\objects\stm32f4xx_sdio.o: C:\Keil_v5\ARM\ARMCC\Bin\..\include\stdint.h
6 | .\objects\stm32f4xx_sdio.o: C:\Keil_v5\ARM\PACK\ARM\CMSIS\5.0.1\CMSIS\Include\cmsis_compiler.h
7 | .\objects\stm32f4xx_sdio.o: C:\Keil_v5\ARM\PACK\ARM\CMSIS\5.0.1\CMSIS\Include\cmsis_armcc.h
8 | .\objects\stm32f4xx_sdio.o: C:\Keil_v5\ARM\PACK\Keil\STM32F4xx_DFP\2.11.0\Drivers\CMSIS\Device\ST\STM32F4xx\Include\system_stm32f4xx.h
9 | .\objects\stm32f4xx_sdio.o: .\LIB\stm32f4xx_conf.h
10 | .\objects\stm32f4xx_sdio.o: .\LIB\SPL\inc\stm32f4xx_adc.h
11 | .\objects\stm32f4xx_sdio.o: .\LIB\stm32f4xx.h
12 | .\objects\stm32f4xx_sdio.o: .\LIB\SPL\inc\stm32f4xx_crc.h
13 | .\objects\stm32f4xx_sdio.o: .\LIB\SPL\inc\stm32f4xx_dbgmcu.h
14 | .\objects\stm32f4xx_sdio.o: .\LIB\SPL\inc\stm32f4xx_dma.h
15 | .\objects\stm32f4xx_sdio.o: .\LIB\SPL\inc\stm32f4xx_exti.h
16 | .\objects\stm32f4xx_sdio.o: .\LIB\SPL\inc\stm32f4xx_flash.h
17 | .\objects\stm32f4xx_sdio.o: .\LIB\SPL\inc\stm32f4xx_gpio.h
18 | .\objects\stm32f4xx_sdio.o: .\LIB\SPL\inc\stm32f4xx_i2c.h
19 | .\objects\stm32f4xx_sdio.o: .\LIB\SPL\inc\stm32f4xx_iwdg.h
20 | .\objects\stm32f4xx_sdio.o: .\LIB\SPL\inc\stm32f4xx_pwr.h
21 | .\objects\stm32f4xx_sdio.o: .\LIB\SPL\inc\stm32f4xx_rcc.h
22 | .\objects\stm32f4xx_sdio.o: .\LIB\SPL\inc\stm32f4xx_rtc.h
23 | .\objects\stm32f4xx_sdio.o: .\LIB\SPL\inc\stm32f4xx_sdio.h
24 | .\objects\stm32f4xx_sdio.o: .\LIB\SPL\inc\stm32f4xx_spi.h
25 | .\objects\stm32f4xx_sdio.o: .\LIB\SPL\inc\stm32f4xx_syscfg.h
26 | .\objects\stm32f4xx_sdio.o: .\LIB\SPL\inc\stm32f4xx_tim.h
27 | .\objects\stm32f4xx_sdio.o: .\LIB\SPL\inc\stm32f4xx_usart.h
28 | .\objects\stm32f4xx_sdio.o: .\LIB\SPL\inc\stm32f4xx_wwdg.h
29 | .\objects\stm32f4xx_sdio.o: .\LIB\SPL\inc\misc.h
30 | .\objects\stm32f4xx_sdio.o: .\LIB\SPL\inc\stm32f4xx_cryp.h
31 | .\objects\stm32f4xx_sdio.o: .\LIB\SPL\inc\stm32f4xx_hash.h
32 | .\objects\stm32f4xx_sdio.o: .\LIB\SPL\inc\stm32f4xx_rng.h
33 | .\objects\stm32f4xx_sdio.o: .\LIB\SPL\inc\stm32f4xx_can.h
34 | .\objects\stm32f4xx_sdio.o: .\LIB\SPL\inc\stm32f4xx_dac.h
35 | .\objects\stm32f4xx_sdio.o: .\LIB\SPL\inc\stm32f4xx_dcmi.h
36 | .\objects\stm32f4xx_sdio.o: .\LIB\SPL\inc\stm32f4xx_fsmc.h
37 |
--------------------------------------------------------------------------------
/Keil_Project/Objects/stm32f4xx_sdio.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Keil_Project/Objects/stm32f4xx_sdio.o
--------------------------------------------------------------------------------
/Keil_Project/Objects/stm32f4xx_spdifrx.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Keil_Project/Objects/stm32f4xx_spdifrx.crf
--------------------------------------------------------------------------------
/Keil_Project/Objects/stm32f4xx_spdifrx.d:
--------------------------------------------------------------------------------
1 | .\objects\stm32f4xx_spdifrx.o: LIB\SPL\src\stm32f4xx_spdifrx.c
2 | .\objects\stm32f4xx_spdifrx.o: .\LIB\SPL\inc\stm32f4xx_spdifrx.h
3 | .\objects\stm32f4xx_spdifrx.o: .\LIB\stm32f4xx.h
4 | .\objects\stm32f4xx_spdifrx.o: C:\Keil_v5\ARM\PACK\ARM\CMSIS\5.0.1\CMSIS\Include\core_cm4.h
5 | .\objects\stm32f4xx_spdifrx.o: C:\Keil_v5\ARM\ARMCC\Bin\..\include\stdint.h
6 | .\objects\stm32f4xx_spdifrx.o: C:\Keil_v5\ARM\PACK\ARM\CMSIS\5.0.1\CMSIS\Include\cmsis_compiler.h
7 | .\objects\stm32f4xx_spdifrx.o: C:\Keil_v5\ARM\PACK\ARM\CMSIS\5.0.1\CMSIS\Include\cmsis_armcc.h
8 | .\objects\stm32f4xx_spdifrx.o: C:\Keil_v5\ARM\PACK\Keil\STM32F4xx_DFP\2.11.0\Drivers\CMSIS\Device\ST\STM32F4xx\Include\system_stm32f4xx.h
9 | .\objects\stm32f4xx_spdifrx.o: .\LIB\stm32f4xx_conf.h
10 | .\objects\stm32f4xx_spdifrx.o: .\LIB\SPL\inc\stm32f4xx_adc.h
11 | .\objects\stm32f4xx_spdifrx.o: .\LIB\stm32f4xx.h
12 | .\objects\stm32f4xx_spdifrx.o: .\LIB\SPL\inc\stm32f4xx_crc.h
13 | .\objects\stm32f4xx_spdifrx.o: .\LIB\SPL\inc\stm32f4xx_dbgmcu.h
14 | .\objects\stm32f4xx_spdifrx.o: .\LIB\SPL\inc\stm32f4xx_dma.h
15 | .\objects\stm32f4xx_spdifrx.o: .\LIB\SPL\inc\stm32f4xx_exti.h
16 | .\objects\stm32f4xx_spdifrx.o: .\LIB\SPL\inc\stm32f4xx_flash.h
17 | .\objects\stm32f4xx_spdifrx.o: .\LIB\SPL\inc\stm32f4xx_gpio.h
18 | .\objects\stm32f4xx_spdifrx.o: .\LIB\SPL\inc\stm32f4xx_i2c.h
19 | .\objects\stm32f4xx_spdifrx.o: .\LIB\SPL\inc\stm32f4xx_iwdg.h
20 | .\objects\stm32f4xx_spdifrx.o: .\LIB\SPL\inc\stm32f4xx_pwr.h
21 | .\objects\stm32f4xx_spdifrx.o: .\LIB\SPL\inc\stm32f4xx_rcc.h
22 | .\objects\stm32f4xx_spdifrx.o: .\LIB\SPL\inc\stm32f4xx_rtc.h
23 | .\objects\stm32f4xx_spdifrx.o: .\LIB\SPL\inc\stm32f4xx_sdio.h
24 | .\objects\stm32f4xx_spdifrx.o: .\LIB\SPL\inc\stm32f4xx_spi.h
25 | .\objects\stm32f4xx_spdifrx.o: .\LIB\SPL\inc\stm32f4xx_syscfg.h
26 | .\objects\stm32f4xx_spdifrx.o: .\LIB\SPL\inc\stm32f4xx_tim.h
27 | .\objects\stm32f4xx_spdifrx.o: .\LIB\SPL\inc\stm32f4xx_usart.h
28 | .\objects\stm32f4xx_spdifrx.o: .\LIB\SPL\inc\stm32f4xx_wwdg.h
29 | .\objects\stm32f4xx_spdifrx.o: .\LIB\SPL\inc\misc.h
30 | .\objects\stm32f4xx_spdifrx.o: .\LIB\SPL\inc\stm32f4xx_cryp.h
31 | .\objects\stm32f4xx_spdifrx.o: .\LIB\SPL\inc\stm32f4xx_hash.h
32 | .\objects\stm32f4xx_spdifrx.o: .\LIB\SPL\inc\stm32f4xx_rng.h
33 | .\objects\stm32f4xx_spdifrx.o: .\LIB\SPL\inc\stm32f4xx_can.h
34 | .\objects\stm32f4xx_spdifrx.o: .\LIB\SPL\inc\stm32f4xx_dac.h
35 | .\objects\stm32f4xx_spdifrx.o: .\LIB\SPL\inc\stm32f4xx_dcmi.h
36 | .\objects\stm32f4xx_spdifrx.o: .\LIB\SPL\inc\stm32f4xx_fsmc.h
37 |
--------------------------------------------------------------------------------
/Keil_Project/Objects/stm32f4xx_spdifrx.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Keil_Project/Objects/stm32f4xx_spdifrx.o
--------------------------------------------------------------------------------
/Keil_Project/Objects/stm32f4xx_spi.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Keil_Project/Objects/stm32f4xx_spi.crf
--------------------------------------------------------------------------------
/Keil_Project/Objects/stm32f4xx_spi.d:
--------------------------------------------------------------------------------
1 | .\objects\stm32f4xx_spi.o: LIB\SPL\src\stm32f4xx_spi.c
2 | .\objects\stm32f4xx_spi.o: .\LIB\SPL\inc\stm32f4xx_spi.h
3 | .\objects\stm32f4xx_spi.o: .\LIB\stm32f4xx.h
4 | .\objects\stm32f4xx_spi.o: C:\Keil_v5\ARM\PACK\ARM\CMSIS\5.0.1\CMSIS\Include\core_cm4.h
5 | .\objects\stm32f4xx_spi.o: C:\Keil_v5\ARM\ARMCC\Bin\..\include\stdint.h
6 | .\objects\stm32f4xx_spi.o: C:\Keil_v5\ARM\PACK\ARM\CMSIS\5.0.1\CMSIS\Include\cmsis_compiler.h
7 | .\objects\stm32f4xx_spi.o: C:\Keil_v5\ARM\PACK\ARM\CMSIS\5.0.1\CMSIS\Include\cmsis_armcc.h
8 | .\objects\stm32f4xx_spi.o: C:\Keil_v5\ARM\PACK\Keil\STM32F4xx_DFP\2.11.0\Drivers\CMSIS\Device\ST\STM32F4xx\Include\system_stm32f4xx.h
9 | .\objects\stm32f4xx_spi.o: .\LIB\stm32f4xx_conf.h
10 | .\objects\stm32f4xx_spi.o: .\LIB\SPL\inc\stm32f4xx_adc.h
11 | .\objects\stm32f4xx_spi.o: .\LIB\stm32f4xx.h
12 | .\objects\stm32f4xx_spi.o: .\LIB\SPL\inc\stm32f4xx_crc.h
13 | .\objects\stm32f4xx_spi.o: .\LIB\SPL\inc\stm32f4xx_dbgmcu.h
14 | .\objects\stm32f4xx_spi.o: .\LIB\SPL\inc\stm32f4xx_dma.h
15 | .\objects\stm32f4xx_spi.o: .\LIB\SPL\inc\stm32f4xx_exti.h
16 | .\objects\stm32f4xx_spi.o: .\LIB\SPL\inc\stm32f4xx_flash.h
17 | .\objects\stm32f4xx_spi.o: .\LIB\SPL\inc\stm32f4xx_gpio.h
18 | .\objects\stm32f4xx_spi.o: .\LIB\SPL\inc\stm32f4xx_i2c.h
19 | .\objects\stm32f4xx_spi.o: .\LIB\SPL\inc\stm32f4xx_iwdg.h
20 | .\objects\stm32f4xx_spi.o: .\LIB\SPL\inc\stm32f4xx_pwr.h
21 | .\objects\stm32f4xx_spi.o: .\LIB\SPL\inc\stm32f4xx_rcc.h
22 | .\objects\stm32f4xx_spi.o: .\LIB\SPL\inc\stm32f4xx_rtc.h
23 | .\objects\stm32f4xx_spi.o: .\LIB\SPL\inc\stm32f4xx_sdio.h
24 | .\objects\stm32f4xx_spi.o: .\LIB\SPL\inc\stm32f4xx_spi.h
25 | .\objects\stm32f4xx_spi.o: .\LIB\SPL\inc\stm32f4xx_syscfg.h
26 | .\objects\stm32f4xx_spi.o: .\LIB\SPL\inc\stm32f4xx_tim.h
27 | .\objects\stm32f4xx_spi.o: .\LIB\SPL\inc\stm32f4xx_usart.h
28 | .\objects\stm32f4xx_spi.o: .\LIB\SPL\inc\stm32f4xx_wwdg.h
29 | .\objects\stm32f4xx_spi.o: .\LIB\SPL\inc\misc.h
30 | .\objects\stm32f4xx_spi.o: .\LIB\SPL\inc\stm32f4xx_cryp.h
31 | .\objects\stm32f4xx_spi.o: .\LIB\SPL\inc\stm32f4xx_hash.h
32 | .\objects\stm32f4xx_spi.o: .\LIB\SPL\inc\stm32f4xx_rng.h
33 | .\objects\stm32f4xx_spi.o: .\LIB\SPL\inc\stm32f4xx_can.h
34 | .\objects\stm32f4xx_spi.o: .\LIB\SPL\inc\stm32f4xx_dac.h
35 | .\objects\stm32f4xx_spi.o: .\LIB\SPL\inc\stm32f4xx_dcmi.h
36 | .\objects\stm32f4xx_spi.o: .\LIB\SPL\inc\stm32f4xx_fsmc.h
37 |
--------------------------------------------------------------------------------
/Keil_Project/Objects/stm32f4xx_spi.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Keil_Project/Objects/stm32f4xx_spi.o
--------------------------------------------------------------------------------
/Keil_Project/Objects/stm32f4xx_syscfg.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Keil_Project/Objects/stm32f4xx_syscfg.crf
--------------------------------------------------------------------------------
/Keil_Project/Objects/stm32f4xx_syscfg.d:
--------------------------------------------------------------------------------
1 | .\objects\stm32f4xx_syscfg.o: LIB\SPL\src\stm32f4xx_syscfg.c
2 | .\objects\stm32f4xx_syscfg.o: .\LIB\SPL\inc\stm32f4xx_syscfg.h
3 | .\objects\stm32f4xx_syscfg.o: .\LIB\stm32f4xx.h
4 | .\objects\stm32f4xx_syscfg.o: C:\Keil_v5\ARM\PACK\ARM\CMSIS\5.0.1\CMSIS\Include\core_cm4.h
5 | .\objects\stm32f4xx_syscfg.o: C:\Keil_v5\ARM\ARMCC\Bin\..\include\stdint.h
6 | .\objects\stm32f4xx_syscfg.o: C:\Keil_v5\ARM\PACK\ARM\CMSIS\5.0.1\CMSIS\Include\cmsis_compiler.h
7 | .\objects\stm32f4xx_syscfg.o: C:\Keil_v5\ARM\PACK\ARM\CMSIS\5.0.1\CMSIS\Include\cmsis_armcc.h
8 | .\objects\stm32f4xx_syscfg.o: C:\Keil_v5\ARM\PACK\Keil\STM32F4xx_DFP\2.11.0\Drivers\CMSIS\Device\ST\STM32F4xx\Include\system_stm32f4xx.h
9 | .\objects\stm32f4xx_syscfg.o: .\LIB\stm32f4xx_conf.h
10 | .\objects\stm32f4xx_syscfg.o: .\LIB\SPL\inc\stm32f4xx_adc.h
11 | .\objects\stm32f4xx_syscfg.o: .\LIB\stm32f4xx.h
12 | .\objects\stm32f4xx_syscfg.o: .\LIB\SPL\inc\stm32f4xx_crc.h
13 | .\objects\stm32f4xx_syscfg.o: .\LIB\SPL\inc\stm32f4xx_dbgmcu.h
14 | .\objects\stm32f4xx_syscfg.o: .\LIB\SPL\inc\stm32f4xx_dma.h
15 | .\objects\stm32f4xx_syscfg.o: .\LIB\SPL\inc\stm32f4xx_exti.h
16 | .\objects\stm32f4xx_syscfg.o: .\LIB\SPL\inc\stm32f4xx_flash.h
17 | .\objects\stm32f4xx_syscfg.o: .\LIB\SPL\inc\stm32f4xx_gpio.h
18 | .\objects\stm32f4xx_syscfg.o: .\LIB\SPL\inc\stm32f4xx_i2c.h
19 | .\objects\stm32f4xx_syscfg.o: .\LIB\SPL\inc\stm32f4xx_iwdg.h
20 | .\objects\stm32f4xx_syscfg.o: .\LIB\SPL\inc\stm32f4xx_pwr.h
21 | .\objects\stm32f4xx_syscfg.o: .\LIB\SPL\inc\stm32f4xx_rcc.h
22 | .\objects\stm32f4xx_syscfg.o: .\LIB\SPL\inc\stm32f4xx_rtc.h
23 | .\objects\stm32f4xx_syscfg.o: .\LIB\SPL\inc\stm32f4xx_sdio.h
24 | .\objects\stm32f4xx_syscfg.o: .\LIB\SPL\inc\stm32f4xx_spi.h
25 | .\objects\stm32f4xx_syscfg.o: .\LIB\SPL\inc\stm32f4xx_syscfg.h
26 | .\objects\stm32f4xx_syscfg.o: .\LIB\SPL\inc\stm32f4xx_tim.h
27 | .\objects\stm32f4xx_syscfg.o: .\LIB\SPL\inc\stm32f4xx_usart.h
28 | .\objects\stm32f4xx_syscfg.o: .\LIB\SPL\inc\stm32f4xx_wwdg.h
29 | .\objects\stm32f4xx_syscfg.o: .\LIB\SPL\inc\misc.h
30 | .\objects\stm32f4xx_syscfg.o: .\LIB\SPL\inc\stm32f4xx_cryp.h
31 | .\objects\stm32f4xx_syscfg.o: .\LIB\SPL\inc\stm32f4xx_hash.h
32 | .\objects\stm32f4xx_syscfg.o: .\LIB\SPL\inc\stm32f4xx_rng.h
33 | .\objects\stm32f4xx_syscfg.o: .\LIB\SPL\inc\stm32f4xx_can.h
34 | .\objects\stm32f4xx_syscfg.o: .\LIB\SPL\inc\stm32f4xx_dac.h
35 | .\objects\stm32f4xx_syscfg.o: .\LIB\SPL\inc\stm32f4xx_dcmi.h
36 | .\objects\stm32f4xx_syscfg.o: .\LIB\SPL\inc\stm32f4xx_fsmc.h
37 |
--------------------------------------------------------------------------------
/Keil_Project/Objects/stm32f4xx_syscfg.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Keil_Project/Objects/stm32f4xx_syscfg.o
--------------------------------------------------------------------------------
/Keil_Project/Objects/stm32f4xx_tim.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Keil_Project/Objects/stm32f4xx_tim.crf
--------------------------------------------------------------------------------
/Keil_Project/Objects/stm32f4xx_tim.d:
--------------------------------------------------------------------------------
1 | .\objects\stm32f4xx_tim.o: LIB\SPL\src\stm32f4xx_tim.c
2 | .\objects\stm32f4xx_tim.o: .\LIB\SPL\inc\stm32f4xx_tim.h
3 | .\objects\stm32f4xx_tim.o: .\LIB\stm32f4xx.h
4 | .\objects\stm32f4xx_tim.o: C:\Keil_v5\ARM\PACK\ARM\CMSIS\5.0.1\CMSIS\Include\core_cm4.h
5 | .\objects\stm32f4xx_tim.o: C:\Keil_v5\ARM\ARMCC\Bin\..\include\stdint.h
6 | .\objects\stm32f4xx_tim.o: C:\Keil_v5\ARM\PACK\ARM\CMSIS\5.0.1\CMSIS\Include\cmsis_compiler.h
7 | .\objects\stm32f4xx_tim.o: C:\Keil_v5\ARM\PACK\ARM\CMSIS\5.0.1\CMSIS\Include\cmsis_armcc.h
8 | .\objects\stm32f4xx_tim.o: C:\Keil_v5\ARM\PACK\Keil\STM32F4xx_DFP\2.11.0\Drivers\CMSIS\Device\ST\STM32F4xx\Include\system_stm32f4xx.h
9 | .\objects\stm32f4xx_tim.o: .\LIB\stm32f4xx_conf.h
10 | .\objects\stm32f4xx_tim.o: .\LIB\SPL\inc\stm32f4xx_adc.h
11 | .\objects\stm32f4xx_tim.o: .\LIB\stm32f4xx.h
12 | .\objects\stm32f4xx_tim.o: .\LIB\SPL\inc\stm32f4xx_crc.h
13 | .\objects\stm32f4xx_tim.o: .\LIB\SPL\inc\stm32f4xx_dbgmcu.h
14 | .\objects\stm32f4xx_tim.o: .\LIB\SPL\inc\stm32f4xx_dma.h
15 | .\objects\stm32f4xx_tim.o: .\LIB\SPL\inc\stm32f4xx_exti.h
16 | .\objects\stm32f4xx_tim.o: .\LIB\SPL\inc\stm32f4xx_flash.h
17 | .\objects\stm32f4xx_tim.o: .\LIB\SPL\inc\stm32f4xx_gpio.h
18 | .\objects\stm32f4xx_tim.o: .\LIB\SPL\inc\stm32f4xx_i2c.h
19 | .\objects\stm32f4xx_tim.o: .\LIB\SPL\inc\stm32f4xx_iwdg.h
20 | .\objects\stm32f4xx_tim.o: .\LIB\SPL\inc\stm32f4xx_pwr.h
21 | .\objects\stm32f4xx_tim.o: .\LIB\SPL\inc\stm32f4xx_rcc.h
22 | .\objects\stm32f4xx_tim.o: .\LIB\SPL\inc\stm32f4xx_rtc.h
23 | .\objects\stm32f4xx_tim.o: .\LIB\SPL\inc\stm32f4xx_sdio.h
24 | .\objects\stm32f4xx_tim.o: .\LIB\SPL\inc\stm32f4xx_spi.h
25 | .\objects\stm32f4xx_tim.o: .\LIB\SPL\inc\stm32f4xx_syscfg.h
26 | .\objects\stm32f4xx_tim.o: .\LIB\SPL\inc\stm32f4xx_tim.h
27 | .\objects\stm32f4xx_tim.o: .\LIB\SPL\inc\stm32f4xx_usart.h
28 | .\objects\stm32f4xx_tim.o: .\LIB\SPL\inc\stm32f4xx_wwdg.h
29 | .\objects\stm32f4xx_tim.o: .\LIB\SPL\inc\misc.h
30 | .\objects\stm32f4xx_tim.o: .\LIB\SPL\inc\stm32f4xx_cryp.h
31 | .\objects\stm32f4xx_tim.o: .\LIB\SPL\inc\stm32f4xx_hash.h
32 | .\objects\stm32f4xx_tim.o: .\LIB\SPL\inc\stm32f4xx_rng.h
33 | .\objects\stm32f4xx_tim.o: .\LIB\SPL\inc\stm32f4xx_can.h
34 | .\objects\stm32f4xx_tim.o: .\LIB\SPL\inc\stm32f4xx_dac.h
35 | .\objects\stm32f4xx_tim.o: .\LIB\SPL\inc\stm32f4xx_dcmi.h
36 | .\objects\stm32f4xx_tim.o: .\LIB\SPL\inc\stm32f4xx_fsmc.h
37 |
--------------------------------------------------------------------------------
/Keil_Project/Objects/stm32f4xx_tim.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Keil_Project/Objects/stm32f4xx_tim.o
--------------------------------------------------------------------------------
/Keil_Project/Objects/stm32f4xx_usart.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Keil_Project/Objects/stm32f4xx_usart.crf
--------------------------------------------------------------------------------
/Keil_Project/Objects/stm32f4xx_usart.d:
--------------------------------------------------------------------------------
1 | .\objects\stm32f4xx_usart.o: LIB\SPL\src\stm32f4xx_usart.c
2 | .\objects\stm32f4xx_usart.o: .\LIB\SPL\inc\stm32f4xx_usart.h
3 | .\objects\stm32f4xx_usart.o: .\LIB\stm32f4xx.h
4 | .\objects\stm32f4xx_usart.o: C:\Keil_v5\ARM\PACK\ARM\CMSIS\5.0.1\CMSIS\Include\core_cm4.h
5 | .\objects\stm32f4xx_usart.o: C:\Keil_v5\ARM\ARMCC\Bin\..\include\stdint.h
6 | .\objects\stm32f4xx_usart.o: C:\Keil_v5\ARM\PACK\ARM\CMSIS\5.0.1\CMSIS\Include\cmsis_compiler.h
7 | .\objects\stm32f4xx_usart.o: C:\Keil_v5\ARM\PACK\ARM\CMSIS\5.0.1\CMSIS\Include\cmsis_armcc.h
8 | .\objects\stm32f4xx_usart.o: C:\Keil_v5\ARM\PACK\Keil\STM32F4xx_DFP\2.11.0\Drivers\CMSIS\Device\ST\STM32F4xx\Include\system_stm32f4xx.h
9 | .\objects\stm32f4xx_usart.o: .\LIB\stm32f4xx_conf.h
10 | .\objects\stm32f4xx_usart.o: .\LIB\SPL\inc\stm32f4xx_adc.h
11 | .\objects\stm32f4xx_usart.o: .\LIB\stm32f4xx.h
12 | .\objects\stm32f4xx_usart.o: .\LIB\SPL\inc\stm32f4xx_crc.h
13 | .\objects\stm32f4xx_usart.o: .\LIB\SPL\inc\stm32f4xx_dbgmcu.h
14 | .\objects\stm32f4xx_usart.o: .\LIB\SPL\inc\stm32f4xx_dma.h
15 | .\objects\stm32f4xx_usart.o: .\LIB\SPL\inc\stm32f4xx_exti.h
16 | .\objects\stm32f4xx_usart.o: .\LIB\SPL\inc\stm32f4xx_flash.h
17 | .\objects\stm32f4xx_usart.o: .\LIB\SPL\inc\stm32f4xx_gpio.h
18 | .\objects\stm32f4xx_usart.o: .\LIB\SPL\inc\stm32f4xx_i2c.h
19 | .\objects\stm32f4xx_usart.o: .\LIB\SPL\inc\stm32f4xx_iwdg.h
20 | .\objects\stm32f4xx_usart.o: .\LIB\SPL\inc\stm32f4xx_pwr.h
21 | .\objects\stm32f4xx_usart.o: .\LIB\SPL\inc\stm32f4xx_rcc.h
22 | .\objects\stm32f4xx_usart.o: .\LIB\SPL\inc\stm32f4xx_rtc.h
23 | .\objects\stm32f4xx_usart.o: .\LIB\SPL\inc\stm32f4xx_sdio.h
24 | .\objects\stm32f4xx_usart.o: .\LIB\SPL\inc\stm32f4xx_spi.h
25 | .\objects\stm32f4xx_usart.o: .\LIB\SPL\inc\stm32f4xx_syscfg.h
26 | .\objects\stm32f4xx_usart.o: .\LIB\SPL\inc\stm32f4xx_tim.h
27 | .\objects\stm32f4xx_usart.o: .\LIB\SPL\inc\stm32f4xx_usart.h
28 | .\objects\stm32f4xx_usart.o: .\LIB\SPL\inc\stm32f4xx_wwdg.h
29 | .\objects\stm32f4xx_usart.o: .\LIB\SPL\inc\misc.h
30 | .\objects\stm32f4xx_usart.o: .\LIB\SPL\inc\stm32f4xx_cryp.h
31 | .\objects\stm32f4xx_usart.o: .\LIB\SPL\inc\stm32f4xx_hash.h
32 | .\objects\stm32f4xx_usart.o: .\LIB\SPL\inc\stm32f4xx_rng.h
33 | .\objects\stm32f4xx_usart.o: .\LIB\SPL\inc\stm32f4xx_can.h
34 | .\objects\stm32f4xx_usart.o: .\LIB\SPL\inc\stm32f4xx_dac.h
35 | .\objects\stm32f4xx_usart.o: .\LIB\SPL\inc\stm32f4xx_dcmi.h
36 | .\objects\stm32f4xx_usart.o: .\LIB\SPL\inc\stm32f4xx_fsmc.h
37 |
--------------------------------------------------------------------------------
/Keil_Project/Objects/stm32f4xx_usart.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Keil_Project/Objects/stm32f4xx_usart.o
--------------------------------------------------------------------------------
/Keil_Project/Objects/stm32f4xx_wwdg.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Keil_Project/Objects/stm32f4xx_wwdg.crf
--------------------------------------------------------------------------------
/Keil_Project/Objects/stm32f4xx_wwdg.d:
--------------------------------------------------------------------------------
1 | .\objects\stm32f4xx_wwdg.o: LIB\SPL\src\stm32f4xx_wwdg.c
2 | .\objects\stm32f4xx_wwdg.o: .\LIB\SPL\inc\stm32f4xx_wwdg.h
3 | .\objects\stm32f4xx_wwdg.o: .\LIB\stm32f4xx.h
4 | .\objects\stm32f4xx_wwdg.o: C:\Keil_v5\ARM\PACK\ARM\CMSIS\5.0.1\CMSIS\Include\core_cm4.h
5 | .\objects\stm32f4xx_wwdg.o: C:\Keil_v5\ARM\ARMCC\Bin\..\include\stdint.h
6 | .\objects\stm32f4xx_wwdg.o: C:\Keil_v5\ARM\PACK\ARM\CMSIS\5.0.1\CMSIS\Include\cmsis_compiler.h
7 | .\objects\stm32f4xx_wwdg.o: C:\Keil_v5\ARM\PACK\ARM\CMSIS\5.0.1\CMSIS\Include\cmsis_armcc.h
8 | .\objects\stm32f4xx_wwdg.o: C:\Keil_v5\ARM\PACK\Keil\STM32F4xx_DFP\2.11.0\Drivers\CMSIS\Device\ST\STM32F4xx\Include\system_stm32f4xx.h
9 | .\objects\stm32f4xx_wwdg.o: .\LIB\stm32f4xx_conf.h
10 | .\objects\stm32f4xx_wwdg.o: .\LIB\SPL\inc\stm32f4xx_adc.h
11 | .\objects\stm32f4xx_wwdg.o: .\LIB\stm32f4xx.h
12 | .\objects\stm32f4xx_wwdg.o: .\LIB\SPL\inc\stm32f4xx_crc.h
13 | .\objects\stm32f4xx_wwdg.o: .\LIB\SPL\inc\stm32f4xx_dbgmcu.h
14 | .\objects\stm32f4xx_wwdg.o: .\LIB\SPL\inc\stm32f4xx_dma.h
15 | .\objects\stm32f4xx_wwdg.o: .\LIB\SPL\inc\stm32f4xx_exti.h
16 | .\objects\stm32f4xx_wwdg.o: .\LIB\SPL\inc\stm32f4xx_flash.h
17 | .\objects\stm32f4xx_wwdg.o: .\LIB\SPL\inc\stm32f4xx_gpio.h
18 | .\objects\stm32f4xx_wwdg.o: .\LIB\SPL\inc\stm32f4xx_i2c.h
19 | .\objects\stm32f4xx_wwdg.o: .\LIB\SPL\inc\stm32f4xx_iwdg.h
20 | .\objects\stm32f4xx_wwdg.o: .\LIB\SPL\inc\stm32f4xx_pwr.h
21 | .\objects\stm32f4xx_wwdg.o: .\LIB\SPL\inc\stm32f4xx_rcc.h
22 | .\objects\stm32f4xx_wwdg.o: .\LIB\SPL\inc\stm32f4xx_rtc.h
23 | .\objects\stm32f4xx_wwdg.o: .\LIB\SPL\inc\stm32f4xx_sdio.h
24 | .\objects\stm32f4xx_wwdg.o: .\LIB\SPL\inc\stm32f4xx_spi.h
25 | .\objects\stm32f4xx_wwdg.o: .\LIB\SPL\inc\stm32f4xx_syscfg.h
26 | .\objects\stm32f4xx_wwdg.o: .\LIB\SPL\inc\stm32f4xx_tim.h
27 | .\objects\stm32f4xx_wwdg.o: .\LIB\SPL\inc\stm32f4xx_usart.h
28 | .\objects\stm32f4xx_wwdg.o: .\LIB\SPL\inc\stm32f4xx_wwdg.h
29 | .\objects\stm32f4xx_wwdg.o: .\LIB\SPL\inc\misc.h
30 | .\objects\stm32f4xx_wwdg.o: .\LIB\SPL\inc\stm32f4xx_cryp.h
31 | .\objects\stm32f4xx_wwdg.o: .\LIB\SPL\inc\stm32f4xx_hash.h
32 | .\objects\stm32f4xx_wwdg.o: .\LIB\SPL\inc\stm32f4xx_rng.h
33 | .\objects\stm32f4xx_wwdg.o: .\LIB\SPL\inc\stm32f4xx_can.h
34 | .\objects\stm32f4xx_wwdg.o: .\LIB\SPL\inc\stm32f4xx_dac.h
35 | .\objects\stm32f4xx_wwdg.o: .\LIB\SPL\inc\stm32f4xx_dcmi.h
36 | .\objects\stm32f4xx_wwdg.o: .\LIB\SPL\inc\stm32f4xx_fsmc.h
37 |
--------------------------------------------------------------------------------
/Keil_Project/Objects/stm32f4xx_wwdg.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Keil_Project/Objects/stm32f4xx_wwdg.o
--------------------------------------------------------------------------------
/Keil_Project/Objects/system_stm32f4xx.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Keil_Project/Objects/system_stm32f4xx.crf
--------------------------------------------------------------------------------
/Keil_Project/Objects/system_stm32f4xx.d:
--------------------------------------------------------------------------------
1 | .\objects\system_stm32f4xx.o: RTE\Device\STM32F407VGTx\system_stm32f4xx.c
2 | .\objects\system_stm32f4xx.o: .\LIB\stm32f4xx.h
3 | .\objects\system_stm32f4xx.o: C:\Keil_v5\ARM\PACK\ARM\CMSIS\5.0.1\CMSIS\Include\core_cm4.h
4 | .\objects\system_stm32f4xx.o: C:\Keil_v5\ARM\ARMCC\Bin\..\include\stdint.h
5 | .\objects\system_stm32f4xx.o: C:\Keil_v5\ARM\PACK\ARM\CMSIS\5.0.1\CMSIS\Include\cmsis_compiler.h
6 | .\objects\system_stm32f4xx.o: C:\Keil_v5\ARM\PACK\ARM\CMSIS\5.0.1\CMSIS\Include\cmsis_armcc.h
7 | .\objects\system_stm32f4xx.o: C:\Keil_v5\ARM\PACK\Keil\STM32F4xx_DFP\2.11.0\Drivers\CMSIS\Device\ST\STM32F4xx\Include\system_stm32f4xx.h
8 | .\objects\system_stm32f4xx.o: .\LIB\stm32f4xx_conf.h
9 | .\objects\system_stm32f4xx.o: .\LIB\SPL\inc\stm32f4xx_adc.h
10 | .\objects\system_stm32f4xx.o: .\LIB\stm32f4xx.h
11 | .\objects\system_stm32f4xx.o: .\LIB\SPL\inc\stm32f4xx_crc.h
12 | .\objects\system_stm32f4xx.o: .\LIB\SPL\inc\stm32f4xx_dbgmcu.h
13 | .\objects\system_stm32f4xx.o: .\LIB\SPL\inc\stm32f4xx_dma.h
14 | .\objects\system_stm32f4xx.o: .\LIB\SPL\inc\stm32f4xx_exti.h
15 | .\objects\system_stm32f4xx.o: .\LIB\SPL\inc\stm32f4xx_flash.h
16 | .\objects\system_stm32f4xx.o: .\LIB\SPL\inc\stm32f4xx_gpio.h
17 | .\objects\system_stm32f4xx.o: .\LIB\SPL\inc\stm32f4xx_i2c.h
18 | .\objects\system_stm32f4xx.o: .\LIB\SPL\inc\stm32f4xx_iwdg.h
19 | .\objects\system_stm32f4xx.o: .\LIB\SPL\inc\stm32f4xx_pwr.h
20 | .\objects\system_stm32f4xx.o: .\LIB\SPL\inc\stm32f4xx_rcc.h
21 | .\objects\system_stm32f4xx.o: .\LIB\SPL\inc\stm32f4xx_rtc.h
22 | .\objects\system_stm32f4xx.o: .\LIB\SPL\inc\stm32f4xx_sdio.h
23 | .\objects\system_stm32f4xx.o: .\LIB\SPL\inc\stm32f4xx_spi.h
24 | .\objects\system_stm32f4xx.o: .\LIB\SPL\inc\stm32f4xx_syscfg.h
25 | .\objects\system_stm32f4xx.o: .\LIB\SPL\inc\stm32f4xx_tim.h
26 | .\objects\system_stm32f4xx.o: .\LIB\SPL\inc\stm32f4xx_usart.h
27 | .\objects\system_stm32f4xx.o: .\LIB\SPL\inc\stm32f4xx_wwdg.h
28 | .\objects\system_stm32f4xx.o: .\LIB\SPL\inc\misc.h
29 | .\objects\system_stm32f4xx.o: .\LIB\SPL\inc\stm32f4xx_cryp.h
30 | .\objects\system_stm32f4xx.o: .\LIB\SPL\inc\stm32f4xx_hash.h
31 | .\objects\system_stm32f4xx.o: .\LIB\SPL\inc\stm32f4xx_rng.h
32 | .\objects\system_stm32f4xx.o: .\LIB\SPL\inc\stm32f4xx_can.h
33 | .\objects\system_stm32f4xx.o: .\LIB\SPL\inc\stm32f4xx_dac.h
34 | .\objects\system_stm32f4xx.o: .\LIB\SPL\inc\stm32f4xx_dcmi.h
35 | .\objects\system_stm32f4xx.o: .\LIB\SPL\inc\stm32f4xx_fsmc.h
36 |
--------------------------------------------------------------------------------
/Keil_Project/Objects/system_stm32f4xx.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Keil_Project/Objects/system_stm32f4xx.o
--------------------------------------------------------------------------------
/Keil_Project/RTE/_Target_1/RTE_Components.h:
--------------------------------------------------------------------------------
1 |
2 | /*
3 | * Auto generated Run-Time-Environment Component Configuration File
4 | * *** Do not modify ! ***
5 | *
6 | * Project: 'SPI_FOC'
7 | * Target: 'Target 1'
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 "stm32f4xx.h"
18 |
19 | #define RTE_DEVICE_STARTUP_STM32F4XX /* Device Startup for STM32F4 */
20 |
21 | #endif /* RTE_COMPONENTS_H */
22 |
--------------------------------------------------------------------------------
/Keil_Project/tmstudio/1.tsp:
--------------------------------------------------------------------------------
1 | #STM Studio project file - do not edit
2 | #Sun Jan 28 23:42:30 GMT+03:00 2018
3 | Main.Version=1
4 | Root.Child0.IsActive=true
5 | Root.Child0.Name=1
6 | Root.Child0.PathRelative=1.tsc
7 | Root.Child0.Type=config
8 | Root.ChildNb=1
9 | Root.Name=1
10 | Root.Type=folder
11 |
--------------------------------------------------------------------------------
/Motor_PCB_V2/History/Motor_PCB.~(1).PrjPcb.Zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Motor_PCB_V2/History/Motor_PCB.~(1).PrjPcb.Zip
--------------------------------------------------------------------------------
/Motor_PCB_V2/History/Motor_PCB.~(2).PrjPcb.Zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Motor_PCB_V2/History/Motor_PCB.~(2).PrjPcb.Zip
--------------------------------------------------------------------------------
/Motor_PCB_V2/History/Motor_PCB.~(3).PrjPcb.Zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Motor_PCB_V2/History/Motor_PCB.~(3).PrjPcb.Zip
--------------------------------------------------------------------------------
/Motor_PCB_V2/History/Motor_PCB.~(4).PrjPcb.Zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Motor_PCB_V2/History/Motor_PCB.~(4).PrjPcb.Zip
--------------------------------------------------------------------------------
/Motor_PCB_V2/History/Motor_PCB.~(5).PrjPcb.Zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Motor_PCB_V2/History/Motor_PCB.~(5).PrjPcb.Zip
--------------------------------------------------------------------------------
/Motor_PCB_V2/History/Motor_PCB.~(6).PrjPcb.Zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Motor_PCB_V2/History/Motor_PCB.~(6).PrjPcb.Zip
--------------------------------------------------------------------------------
/Motor_PCB_V2/History/Motor_PCB.~(7).PrjPcb.Zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Motor_PCB_V2/History/Motor_PCB.~(7).PrjPcb.Zip
--------------------------------------------------------------------------------
/Motor_PCB_V2/History/PCB1.~(1).PcbDoc.Zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Motor_PCB_V2/History/PCB1.~(1).PcbDoc.Zip
--------------------------------------------------------------------------------
/Motor_PCB_V2/History/PCB1.~(11).PcbDoc.Zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Motor_PCB_V2/History/PCB1.~(11).PcbDoc.Zip
--------------------------------------------------------------------------------
/Motor_PCB_V2/History/PCB1.~(12).PcbDoc.Zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Motor_PCB_V2/History/PCB1.~(12).PcbDoc.Zip
--------------------------------------------------------------------------------
/Motor_PCB_V2/History/PCB1.~(13).PcbDoc.Zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Motor_PCB_V2/History/PCB1.~(13).PcbDoc.Zip
--------------------------------------------------------------------------------
/Motor_PCB_V2/History/PCB1.~(14).PcbDoc.Zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Motor_PCB_V2/History/PCB1.~(14).PcbDoc.Zip
--------------------------------------------------------------------------------
/Motor_PCB_V2/History/PCB1.~(15).PcbDoc.Zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Motor_PCB_V2/History/PCB1.~(15).PcbDoc.Zip
--------------------------------------------------------------------------------
/Motor_PCB_V2/History/PCB1.~(16).PcbDoc.Zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Motor_PCB_V2/History/PCB1.~(16).PcbDoc.Zip
--------------------------------------------------------------------------------
/Motor_PCB_V2/History/PCB1.~(17).PcbDoc.Zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Motor_PCB_V2/History/PCB1.~(17).PcbDoc.Zip
--------------------------------------------------------------------------------
/Motor_PCB_V2/History/PCB1.~(18).PcbDoc.Zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Motor_PCB_V2/History/PCB1.~(18).PcbDoc.Zip
--------------------------------------------------------------------------------
/Motor_PCB_V2/History/PCB1.~(19).PcbDoc.Zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Motor_PCB_V2/History/PCB1.~(19).PcbDoc.Zip
--------------------------------------------------------------------------------
/Motor_PCB_V2/History/PCB1.~(2).PcbDoc.Zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Motor_PCB_V2/History/PCB1.~(2).PcbDoc.Zip
--------------------------------------------------------------------------------
/Motor_PCB_V2/History/PCB1.~(20).PcbDoc.Zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Motor_PCB_V2/History/PCB1.~(20).PcbDoc.Zip
--------------------------------------------------------------------------------
/Motor_PCB_V2/History/PCB1.~(21).PcbDoc.Zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Motor_PCB_V2/History/PCB1.~(21).PcbDoc.Zip
--------------------------------------------------------------------------------
/Motor_PCB_V2/History/PCB1.~(22).PcbDoc.Zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Motor_PCB_V2/History/PCB1.~(22).PcbDoc.Zip
--------------------------------------------------------------------------------
/Motor_PCB_V2/History/PCB1.~(23).PcbDoc.Zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Motor_PCB_V2/History/PCB1.~(23).PcbDoc.Zip
--------------------------------------------------------------------------------
/Motor_PCB_V2/History/PCB1.~(24).PcbDoc.Zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Motor_PCB_V2/History/PCB1.~(24).PcbDoc.Zip
--------------------------------------------------------------------------------
/Motor_PCB_V2/History/PCB1.~(25).PcbDoc.Zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Motor_PCB_V2/History/PCB1.~(25).PcbDoc.Zip
--------------------------------------------------------------------------------
/Motor_PCB_V2/History/PCB1.~(26).PcbDoc.Zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Motor_PCB_V2/History/PCB1.~(26).PcbDoc.Zip
--------------------------------------------------------------------------------
/Motor_PCB_V2/History/PCB1.~(27).PcbDoc.Zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Motor_PCB_V2/History/PCB1.~(27).PcbDoc.Zip
--------------------------------------------------------------------------------
/Motor_PCB_V2/History/PCB1.~(28).PcbDoc.Zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Motor_PCB_V2/History/PCB1.~(28).PcbDoc.Zip
--------------------------------------------------------------------------------
/Motor_PCB_V2/History/PCB1.~(29).PcbDoc.Zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Motor_PCB_V2/History/PCB1.~(29).PcbDoc.Zip
--------------------------------------------------------------------------------
/Motor_PCB_V2/History/PCB1.~(3).PcbDoc.Zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Motor_PCB_V2/History/PCB1.~(3).PcbDoc.Zip
--------------------------------------------------------------------------------
/Motor_PCB_V2/History/PCB1.~(30).PcbDoc.Zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Motor_PCB_V2/History/PCB1.~(30).PcbDoc.Zip
--------------------------------------------------------------------------------
/Motor_PCB_V2/History/PCB1.~(31).PcbDoc.Zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Motor_PCB_V2/History/PCB1.~(31).PcbDoc.Zip
--------------------------------------------------------------------------------
/Motor_PCB_V2/History/PCB1.~(32).PcbDoc.Zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Motor_PCB_V2/History/PCB1.~(32).PcbDoc.Zip
--------------------------------------------------------------------------------
/Motor_PCB_V2/History/PCB1.~(33).PcbDoc.Zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Motor_PCB_V2/History/PCB1.~(33).PcbDoc.Zip
--------------------------------------------------------------------------------
/Motor_PCB_V2/History/PCB1.~(34).PcbDoc.Zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Motor_PCB_V2/History/PCB1.~(34).PcbDoc.Zip
--------------------------------------------------------------------------------
/Motor_PCB_V2/History/PCB1.~(35).PcbDoc.Zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Motor_PCB_V2/History/PCB1.~(35).PcbDoc.Zip
--------------------------------------------------------------------------------
/Motor_PCB_V2/History/PCB1.~(36).PcbDoc.Zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Motor_PCB_V2/History/PCB1.~(36).PcbDoc.Zip
--------------------------------------------------------------------------------
/Motor_PCB_V2/History/PCB1.~(37).PcbDoc.Zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Motor_PCB_V2/History/PCB1.~(37).PcbDoc.Zip
--------------------------------------------------------------------------------
/Motor_PCB_V2/History/PCB1.~(38).PcbDoc.Zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Motor_PCB_V2/History/PCB1.~(38).PcbDoc.Zip
--------------------------------------------------------------------------------
/Motor_PCB_V2/History/PCB1.~(39).PcbDoc.Zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Motor_PCB_V2/History/PCB1.~(39).PcbDoc.Zip
--------------------------------------------------------------------------------
/Motor_PCB_V2/History/PCB1.~(4).PcbDoc.Zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Motor_PCB_V2/History/PCB1.~(4).PcbDoc.Zip
--------------------------------------------------------------------------------
/Motor_PCB_V2/History/PCB1.~(40).PcbDoc.Zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Motor_PCB_V2/History/PCB1.~(40).PcbDoc.Zip
--------------------------------------------------------------------------------
/Motor_PCB_V2/History/PCB1.~(41).PcbDoc.Zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Motor_PCB_V2/History/PCB1.~(41).PcbDoc.Zip
--------------------------------------------------------------------------------
/Motor_PCB_V2/History/PCB1.~(42).PcbDoc.Zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Motor_PCB_V2/History/PCB1.~(42).PcbDoc.Zip
--------------------------------------------------------------------------------
/Motor_PCB_V2/History/PCB1.~(43).PcbDoc.Zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Motor_PCB_V2/History/PCB1.~(43).PcbDoc.Zip
--------------------------------------------------------------------------------
/Motor_PCB_V2/History/PCB1.~(44).PcbDoc.Zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Motor_PCB_V2/History/PCB1.~(44).PcbDoc.Zip
--------------------------------------------------------------------------------
/Motor_PCB_V2/History/PCB1.~(45).PcbDoc.Zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Motor_PCB_V2/History/PCB1.~(45).PcbDoc.Zip
--------------------------------------------------------------------------------
/Motor_PCB_V2/History/PCB1.~(46).PcbDoc.Zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Motor_PCB_V2/History/PCB1.~(46).PcbDoc.Zip
--------------------------------------------------------------------------------
/Motor_PCB_V2/History/PCB1.~(47).PcbDoc.Zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Motor_PCB_V2/History/PCB1.~(47).PcbDoc.Zip
--------------------------------------------------------------------------------
/Motor_PCB_V2/History/PCB1.~(48).PcbDoc.Zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Motor_PCB_V2/History/PCB1.~(48).PcbDoc.Zip
--------------------------------------------------------------------------------
/Motor_PCB_V2/History/PCB1.~(49).PcbDoc.Zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Motor_PCB_V2/History/PCB1.~(49).PcbDoc.Zip
--------------------------------------------------------------------------------
/Motor_PCB_V2/History/PCB1.~(5).PcbDoc.Zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Motor_PCB_V2/History/PCB1.~(5).PcbDoc.Zip
--------------------------------------------------------------------------------
/Motor_PCB_V2/History/PCB1.~(50).PcbDoc.Zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Motor_PCB_V2/History/PCB1.~(50).PcbDoc.Zip
--------------------------------------------------------------------------------
/Motor_PCB_V2/History/PCB1.~(51).PcbDoc.Zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Motor_PCB_V2/History/PCB1.~(51).PcbDoc.Zip
--------------------------------------------------------------------------------
/Motor_PCB_V2/History/PCB1.~(52).PcbDoc.Zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Motor_PCB_V2/History/PCB1.~(52).PcbDoc.Zip
--------------------------------------------------------------------------------
/Motor_PCB_V2/History/PCB1.~(53).PcbDoc.Zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Motor_PCB_V2/History/PCB1.~(53).PcbDoc.Zip
--------------------------------------------------------------------------------
/Motor_PCB_V2/History/PCB1.~(54).PcbDoc.Zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Motor_PCB_V2/History/PCB1.~(54).PcbDoc.Zip
--------------------------------------------------------------------------------
/Motor_PCB_V2/History/PCB1.~(55).PcbDoc.Zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Motor_PCB_V2/History/PCB1.~(55).PcbDoc.Zip
--------------------------------------------------------------------------------
/Motor_PCB_V2/History/PCB1.~(56).PcbDoc.Zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Motor_PCB_V2/History/PCB1.~(56).PcbDoc.Zip
--------------------------------------------------------------------------------
/Motor_PCB_V2/History/PCB1.~(57).PcbDoc.Zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Motor_PCB_V2/History/PCB1.~(57).PcbDoc.Zip
--------------------------------------------------------------------------------
/Motor_PCB_V2/History/PCB1.~(58).PcbDoc.Zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Motor_PCB_V2/History/PCB1.~(58).PcbDoc.Zip
--------------------------------------------------------------------------------
/Motor_PCB_V2/History/PCB1.~(59).PcbDoc.Zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Motor_PCB_V2/History/PCB1.~(59).PcbDoc.Zip
--------------------------------------------------------------------------------
/Motor_PCB_V2/History/PCB1.~(6).PcbDoc.Zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Motor_PCB_V2/History/PCB1.~(6).PcbDoc.Zip
--------------------------------------------------------------------------------
/Motor_PCB_V2/History/PCB1.~(60).PcbDoc.Zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Motor_PCB_V2/History/PCB1.~(60).PcbDoc.Zip
--------------------------------------------------------------------------------
/Motor_PCB_V2/History/PCB1.~(61).PcbDoc.Zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Motor_PCB_V2/History/PCB1.~(61).PcbDoc.Zip
--------------------------------------------------------------------------------
/Motor_PCB_V2/History/PCB1.~(62).PcbDoc.Zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Motor_PCB_V2/History/PCB1.~(62).PcbDoc.Zip
--------------------------------------------------------------------------------
/Motor_PCB_V2/History/PCB1.~(63).PcbDoc.Zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Motor_PCB_V2/History/PCB1.~(63).PcbDoc.Zip
--------------------------------------------------------------------------------
/Motor_PCB_V2/History/PCB1.~(64).PcbDoc.Zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Motor_PCB_V2/History/PCB1.~(64).PcbDoc.Zip
--------------------------------------------------------------------------------
/Motor_PCB_V2/History/PCB1.~(7).PcbDoc.Zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Motor_PCB_V2/History/PCB1.~(7).PcbDoc.Zip
--------------------------------------------------------------------------------
/Motor_PCB_V2/History/PCB1.~(8).PcbDoc.Zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Motor_PCB_V2/History/PCB1.~(8).PcbDoc.Zip
--------------------------------------------------------------------------------
/Motor_PCB_V2/History/PCB1.~(9).PcbDoc.Zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Motor_PCB_V2/History/PCB1.~(9).PcbDoc.Zip
--------------------------------------------------------------------------------
/Motor_PCB_V2/History/PcbLib1.~(1).PcbLib.Zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Motor_PCB_V2/History/PcbLib1.~(1).PcbLib.Zip
--------------------------------------------------------------------------------
/Motor_PCB_V2/History/PcbLib1.~(10).PcbLib.Zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Motor_PCB_V2/History/PcbLib1.~(10).PcbLib.Zip
--------------------------------------------------------------------------------
/Motor_PCB_V2/History/PcbLib1.~(11).PcbLib.Zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Motor_PCB_V2/History/PcbLib1.~(11).PcbLib.Zip
--------------------------------------------------------------------------------
/Motor_PCB_V2/History/PcbLib1.~(12).PcbLib.Zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Motor_PCB_V2/History/PcbLib1.~(12).PcbLib.Zip
--------------------------------------------------------------------------------
/Motor_PCB_V2/History/PcbLib1.~(13).PcbLib.Zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Motor_PCB_V2/History/PcbLib1.~(13).PcbLib.Zip
--------------------------------------------------------------------------------
/Motor_PCB_V2/History/PcbLib1.~(2).PcbLib.Zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Motor_PCB_V2/History/PcbLib1.~(2).PcbLib.Zip
--------------------------------------------------------------------------------
/Motor_PCB_V2/History/PcbLib1.~(3).PcbLib.Zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Motor_PCB_V2/History/PcbLib1.~(3).PcbLib.Zip
--------------------------------------------------------------------------------
/Motor_PCB_V2/History/PcbLib1.~(4).PcbLib.Zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Motor_PCB_V2/History/PcbLib1.~(4).PcbLib.Zip
--------------------------------------------------------------------------------
/Motor_PCB_V2/History/PcbLib1.~(5).PcbLib.Zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Motor_PCB_V2/History/PcbLib1.~(5).PcbLib.Zip
--------------------------------------------------------------------------------
/Motor_PCB_V2/History/PcbLib1.~(6).PcbLib.Zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Motor_PCB_V2/History/PcbLib1.~(6).PcbLib.Zip
--------------------------------------------------------------------------------
/Motor_PCB_V2/History/PcbLib1.~(7).PcbLib.Zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Motor_PCB_V2/History/PcbLib1.~(7).PcbLib.Zip
--------------------------------------------------------------------------------
/Motor_PCB_V2/History/PcbLib1.~(8).PcbLib.Zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Motor_PCB_V2/History/PcbLib1.~(8).PcbLib.Zip
--------------------------------------------------------------------------------
/Motor_PCB_V2/History/PcbLib1.~(9).PcbLib.Zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Motor_PCB_V2/History/PcbLib1.~(9).PcbLib.Zip
--------------------------------------------------------------------------------
/Motor_PCB_V2/History/Schlib1.~(1).SchLib.Zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Motor_PCB_V2/History/Schlib1.~(1).SchLib.Zip
--------------------------------------------------------------------------------
/Motor_PCB_V2/History/Schlib1.~(10).SchLib.Zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Motor_PCB_V2/History/Schlib1.~(10).SchLib.Zip
--------------------------------------------------------------------------------
/Motor_PCB_V2/History/Schlib1.~(11).SchLib.Zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Motor_PCB_V2/History/Schlib1.~(11).SchLib.Zip
--------------------------------------------------------------------------------
/Motor_PCB_V2/History/Schlib1.~(12).SchLib.Zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Motor_PCB_V2/History/Schlib1.~(12).SchLib.Zip
--------------------------------------------------------------------------------
/Motor_PCB_V2/History/Schlib1.~(13).SchLib.Zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Motor_PCB_V2/History/Schlib1.~(13).SchLib.Zip
--------------------------------------------------------------------------------
/Motor_PCB_V2/History/Schlib1.~(14).SchLib.Zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Motor_PCB_V2/History/Schlib1.~(14).SchLib.Zip
--------------------------------------------------------------------------------
/Motor_PCB_V2/History/Schlib1.~(15).SchLib.Zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Motor_PCB_V2/History/Schlib1.~(15).SchLib.Zip
--------------------------------------------------------------------------------
/Motor_PCB_V2/History/Schlib1.~(16).SchLib.Zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Motor_PCB_V2/History/Schlib1.~(16).SchLib.Zip
--------------------------------------------------------------------------------
/Motor_PCB_V2/History/Schlib1.~(17).SchLib.Zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Motor_PCB_V2/History/Schlib1.~(17).SchLib.Zip
--------------------------------------------------------------------------------
/Motor_PCB_V2/History/Schlib1.~(18).SchLib.Zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Motor_PCB_V2/History/Schlib1.~(18).SchLib.Zip
--------------------------------------------------------------------------------
/Motor_PCB_V2/History/Schlib1.~(19).SchLib.Zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Motor_PCB_V2/History/Schlib1.~(19).SchLib.Zip
--------------------------------------------------------------------------------
/Motor_PCB_V2/History/Schlib1.~(2).SchLib.Zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Motor_PCB_V2/History/Schlib1.~(2).SchLib.Zip
--------------------------------------------------------------------------------
/Motor_PCB_V2/History/Schlib1.~(20).SchLib.Zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Motor_PCB_V2/History/Schlib1.~(20).SchLib.Zip
--------------------------------------------------------------------------------
/Motor_PCB_V2/History/Schlib1.~(21).SchLib.Zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Motor_PCB_V2/History/Schlib1.~(21).SchLib.Zip
--------------------------------------------------------------------------------
/Motor_PCB_V2/History/Schlib1.~(22).SchLib.Zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Motor_PCB_V2/History/Schlib1.~(22).SchLib.Zip
--------------------------------------------------------------------------------
/Motor_PCB_V2/History/Schlib1.~(23).SchLib.Zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Motor_PCB_V2/History/Schlib1.~(23).SchLib.Zip
--------------------------------------------------------------------------------
/Motor_PCB_V2/History/Schlib1.~(24).SchLib.Zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Motor_PCB_V2/History/Schlib1.~(24).SchLib.Zip
--------------------------------------------------------------------------------
/Motor_PCB_V2/History/Schlib1.~(25).SchLib.Zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Motor_PCB_V2/History/Schlib1.~(25).SchLib.Zip
--------------------------------------------------------------------------------
/Motor_PCB_V2/History/Schlib1.~(26).SchLib.Zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Motor_PCB_V2/History/Schlib1.~(26).SchLib.Zip
--------------------------------------------------------------------------------
/Motor_PCB_V2/History/Schlib1.~(27).SchLib.Zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Motor_PCB_V2/History/Schlib1.~(27).SchLib.Zip
--------------------------------------------------------------------------------
/Motor_PCB_V2/History/Schlib1.~(28).SchLib.Zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Motor_PCB_V2/History/Schlib1.~(28).SchLib.Zip
--------------------------------------------------------------------------------
/Motor_PCB_V2/History/Schlib1.~(29).SchLib.Zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Motor_PCB_V2/History/Schlib1.~(29).SchLib.Zip
--------------------------------------------------------------------------------
/Motor_PCB_V2/History/Schlib1.~(3).SchLib.Zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Motor_PCB_V2/History/Schlib1.~(3).SchLib.Zip
--------------------------------------------------------------------------------
/Motor_PCB_V2/History/Schlib1.~(30).SchLib.Zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Motor_PCB_V2/History/Schlib1.~(30).SchLib.Zip
--------------------------------------------------------------------------------
/Motor_PCB_V2/History/Schlib1.~(31).SchLib.Zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Motor_PCB_V2/History/Schlib1.~(31).SchLib.Zip
--------------------------------------------------------------------------------
/Motor_PCB_V2/History/Schlib1.~(32).SchLib.Zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Motor_PCB_V2/History/Schlib1.~(32).SchLib.Zip
--------------------------------------------------------------------------------
/Motor_PCB_V2/History/Schlib1.~(33).SchLib.Zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Motor_PCB_V2/History/Schlib1.~(33).SchLib.Zip
--------------------------------------------------------------------------------
/Motor_PCB_V2/History/Schlib1.~(4).SchLib.Zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Motor_PCB_V2/History/Schlib1.~(4).SchLib.Zip
--------------------------------------------------------------------------------
/Motor_PCB_V2/History/Schlib1.~(5).SchLib.Zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Motor_PCB_V2/History/Schlib1.~(5).SchLib.Zip
--------------------------------------------------------------------------------
/Motor_PCB_V2/History/Schlib1.~(6).SchLib.Zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Motor_PCB_V2/History/Schlib1.~(6).SchLib.Zip
--------------------------------------------------------------------------------
/Motor_PCB_V2/History/Schlib1.~(7).SchLib.Zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Motor_PCB_V2/History/Schlib1.~(7).SchLib.Zip
--------------------------------------------------------------------------------
/Motor_PCB_V2/History/Schlib1.~(8).SchLib.Zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Motor_PCB_V2/History/Schlib1.~(8).SchLib.Zip
--------------------------------------------------------------------------------
/Motor_PCB_V2/History/Schlib1.~(9).SchLib.Zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Motor_PCB_V2/History/Schlib1.~(9).SchLib.Zip
--------------------------------------------------------------------------------
/Motor_PCB_V2/History/Sheet1.~(1).SchDoc.Zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Motor_PCB_V2/History/Sheet1.~(1).SchDoc.Zip
--------------------------------------------------------------------------------
/Motor_PCB_V2/History/Sheet1.~(10).SchDoc.Zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Motor_PCB_V2/History/Sheet1.~(10).SchDoc.Zip
--------------------------------------------------------------------------------
/Motor_PCB_V2/History/Sheet1.~(11).SchDoc.Zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Motor_PCB_V2/History/Sheet1.~(11).SchDoc.Zip
--------------------------------------------------------------------------------
/Motor_PCB_V2/History/Sheet1.~(12).SchDoc.Zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Motor_PCB_V2/History/Sheet1.~(12).SchDoc.Zip
--------------------------------------------------------------------------------
/Motor_PCB_V2/History/Sheet1.~(13).SchDoc.Zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Motor_PCB_V2/History/Sheet1.~(13).SchDoc.Zip
--------------------------------------------------------------------------------
/Motor_PCB_V2/History/Sheet1.~(14).SchDoc.Zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Motor_PCB_V2/History/Sheet1.~(14).SchDoc.Zip
--------------------------------------------------------------------------------
/Motor_PCB_V2/History/Sheet1.~(15).SchDoc.Zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Motor_PCB_V2/History/Sheet1.~(15).SchDoc.Zip
--------------------------------------------------------------------------------
/Motor_PCB_V2/History/Sheet1.~(16).SchDoc.Zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Motor_PCB_V2/History/Sheet1.~(16).SchDoc.Zip
--------------------------------------------------------------------------------
/Motor_PCB_V2/History/Sheet1.~(17).SchDoc.Zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Motor_PCB_V2/History/Sheet1.~(17).SchDoc.Zip
--------------------------------------------------------------------------------
/Motor_PCB_V2/History/Sheet1.~(18).SchDoc.Zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Motor_PCB_V2/History/Sheet1.~(18).SchDoc.Zip
--------------------------------------------------------------------------------
/Motor_PCB_V2/History/Sheet1.~(19).SchDoc.Zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Motor_PCB_V2/History/Sheet1.~(19).SchDoc.Zip
--------------------------------------------------------------------------------
/Motor_PCB_V2/History/Sheet1.~(20).SchDoc.Zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Motor_PCB_V2/History/Sheet1.~(20).SchDoc.Zip
--------------------------------------------------------------------------------
/Motor_PCB_V2/History/Sheet1.~(21).SchDoc.Zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Motor_PCB_V2/History/Sheet1.~(21).SchDoc.Zip
--------------------------------------------------------------------------------
/Motor_PCB_V2/History/Sheet1.~(22).SchDoc.Zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Motor_PCB_V2/History/Sheet1.~(22).SchDoc.Zip
--------------------------------------------------------------------------------
/Motor_PCB_V2/History/Sheet1.~(23).SchDoc.Zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Motor_PCB_V2/History/Sheet1.~(23).SchDoc.Zip
--------------------------------------------------------------------------------
/Motor_PCB_V2/History/Sheet1.~(24).SchDoc.Zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Motor_PCB_V2/History/Sheet1.~(24).SchDoc.Zip
--------------------------------------------------------------------------------
/Motor_PCB_V2/History/Sheet1.~(25).SchDoc.Zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Motor_PCB_V2/History/Sheet1.~(25).SchDoc.Zip
--------------------------------------------------------------------------------
/Motor_PCB_V2/History/Sheet1.~(26).SchDoc.Zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Motor_PCB_V2/History/Sheet1.~(26).SchDoc.Zip
--------------------------------------------------------------------------------
/Motor_PCB_V2/History/Sheet1.~(27).SchDoc.Zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Motor_PCB_V2/History/Sheet1.~(27).SchDoc.Zip
--------------------------------------------------------------------------------
/Motor_PCB_V2/History/Sheet1.~(28).SchDoc.Zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Motor_PCB_V2/History/Sheet1.~(28).SchDoc.Zip
--------------------------------------------------------------------------------
/Motor_PCB_V2/History/Sheet1.~(29).SchDoc.Zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Motor_PCB_V2/History/Sheet1.~(29).SchDoc.Zip
--------------------------------------------------------------------------------
/Motor_PCB_V2/History/Sheet1.~(3).SchDoc.Zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Motor_PCB_V2/History/Sheet1.~(3).SchDoc.Zip
--------------------------------------------------------------------------------
/Motor_PCB_V2/History/Sheet1.~(30).SchDoc.Zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Motor_PCB_V2/History/Sheet1.~(30).SchDoc.Zip
--------------------------------------------------------------------------------
/Motor_PCB_V2/History/Sheet1.~(31).SchDoc.Zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Motor_PCB_V2/History/Sheet1.~(31).SchDoc.Zip
--------------------------------------------------------------------------------
/Motor_PCB_V2/History/Sheet1.~(32).SchDoc.Zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Motor_PCB_V2/History/Sheet1.~(32).SchDoc.Zip
--------------------------------------------------------------------------------
/Motor_PCB_V2/History/Sheet1.~(33).SchDoc.Zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Motor_PCB_V2/History/Sheet1.~(33).SchDoc.Zip
--------------------------------------------------------------------------------
/Motor_PCB_V2/History/Sheet1.~(34).SchDoc.Zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Motor_PCB_V2/History/Sheet1.~(34).SchDoc.Zip
--------------------------------------------------------------------------------
/Motor_PCB_V2/History/Sheet1.~(35).SchDoc.Zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Motor_PCB_V2/History/Sheet1.~(35).SchDoc.Zip
--------------------------------------------------------------------------------
/Motor_PCB_V2/History/Sheet1.~(36).SchDoc.Zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Motor_PCB_V2/History/Sheet1.~(36).SchDoc.Zip
--------------------------------------------------------------------------------
/Motor_PCB_V2/History/Sheet1.~(37).SchDoc.Zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Motor_PCB_V2/History/Sheet1.~(37).SchDoc.Zip
--------------------------------------------------------------------------------
/Motor_PCB_V2/History/Sheet1.~(38).SchDoc.Zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Motor_PCB_V2/History/Sheet1.~(38).SchDoc.Zip
--------------------------------------------------------------------------------
/Motor_PCB_V2/History/Sheet1.~(39).SchDoc.Zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Motor_PCB_V2/History/Sheet1.~(39).SchDoc.Zip
--------------------------------------------------------------------------------
/Motor_PCB_V2/History/Sheet1.~(4).SchDoc.Zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Motor_PCB_V2/History/Sheet1.~(4).SchDoc.Zip
--------------------------------------------------------------------------------
/Motor_PCB_V2/History/Sheet1.~(40).SchDoc.Zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Motor_PCB_V2/History/Sheet1.~(40).SchDoc.Zip
--------------------------------------------------------------------------------
/Motor_PCB_V2/History/Sheet1.~(41).SchDoc.Zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Motor_PCB_V2/History/Sheet1.~(41).SchDoc.Zip
--------------------------------------------------------------------------------
/Motor_PCB_V2/History/Sheet1.~(42).SchDoc.Zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Motor_PCB_V2/History/Sheet1.~(42).SchDoc.Zip
--------------------------------------------------------------------------------
/Motor_PCB_V2/History/Sheet1.~(43).SchDoc.Zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Motor_PCB_V2/History/Sheet1.~(43).SchDoc.Zip
--------------------------------------------------------------------------------
/Motor_PCB_V2/History/Sheet1.~(44).SchDoc.Zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Motor_PCB_V2/History/Sheet1.~(44).SchDoc.Zip
--------------------------------------------------------------------------------
/Motor_PCB_V2/History/Sheet1.~(45).SchDoc.Zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Motor_PCB_V2/History/Sheet1.~(45).SchDoc.Zip
--------------------------------------------------------------------------------
/Motor_PCB_V2/History/Sheet1.~(46).SchDoc.Zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Motor_PCB_V2/History/Sheet1.~(46).SchDoc.Zip
--------------------------------------------------------------------------------
/Motor_PCB_V2/History/Sheet1.~(47).SchDoc.Zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Motor_PCB_V2/History/Sheet1.~(47).SchDoc.Zip
--------------------------------------------------------------------------------
/Motor_PCB_V2/History/Sheet1.~(48).SchDoc.Zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Motor_PCB_V2/History/Sheet1.~(48).SchDoc.Zip
--------------------------------------------------------------------------------
/Motor_PCB_V2/History/Sheet1.~(49).SchDoc.Zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Motor_PCB_V2/History/Sheet1.~(49).SchDoc.Zip
--------------------------------------------------------------------------------
/Motor_PCB_V2/History/Sheet1.~(5).SchDoc.Zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Motor_PCB_V2/History/Sheet1.~(5).SchDoc.Zip
--------------------------------------------------------------------------------
/Motor_PCB_V2/History/Sheet1.~(50).SchDoc.Zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Motor_PCB_V2/History/Sheet1.~(50).SchDoc.Zip
--------------------------------------------------------------------------------
/Motor_PCB_V2/History/Sheet1.~(51).SchDoc.Zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Motor_PCB_V2/History/Sheet1.~(51).SchDoc.Zip
--------------------------------------------------------------------------------
/Motor_PCB_V2/History/Sheet1.~(52).SchDoc.Zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Motor_PCB_V2/History/Sheet1.~(52).SchDoc.Zip
--------------------------------------------------------------------------------
/Motor_PCB_V2/History/Sheet1.~(53).SchDoc.Zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Motor_PCB_V2/History/Sheet1.~(53).SchDoc.Zip
--------------------------------------------------------------------------------
/Motor_PCB_V2/History/Sheet1.~(54).SchDoc.Zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Motor_PCB_V2/History/Sheet1.~(54).SchDoc.Zip
--------------------------------------------------------------------------------
/Motor_PCB_V2/History/Sheet1.~(55).SchDoc.Zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Motor_PCB_V2/History/Sheet1.~(55).SchDoc.Zip
--------------------------------------------------------------------------------
/Motor_PCB_V2/History/Sheet1.~(56).SchDoc.Zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Motor_PCB_V2/History/Sheet1.~(56).SchDoc.Zip
--------------------------------------------------------------------------------
/Motor_PCB_V2/History/Sheet1.~(57).SchDoc.Zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Motor_PCB_V2/History/Sheet1.~(57).SchDoc.Zip
--------------------------------------------------------------------------------
/Motor_PCB_V2/History/Sheet1.~(58).SchDoc.Zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Motor_PCB_V2/History/Sheet1.~(58).SchDoc.Zip
--------------------------------------------------------------------------------
/Motor_PCB_V2/History/Sheet1.~(59).SchDoc.Zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Motor_PCB_V2/History/Sheet1.~(59).SchDoc.Zip
--------------------------------------------------------------------------------
/Motor_PCB_V2/History/Sheet1.~(6).SchDoc.Zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Motor_PCB_V2/History/Sheet1.~(6).SchDoc.Zip
--------------------------------------------------------------------------------
/Motor_PCB_V2/History/Sheet1.~(7).SchDoc.Zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Motor_PCB_V2/History/Sheet1.~(7).SchDoc.Zip
--------------------------------------------------------------------------------
/Motor_PCB_V2/History/Sheet1.~(8).SchDoc.Zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Motor_PCB_V2/History/Sheet1.~(8).SchDoc.Zip
--------------------------------------------------------------------------------
/Motor_PCB_V2/History/Sheet1.~(9).SchDoc.Zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Motor_PCB_V2/History/Sheet1.~(9).SchDoc.Zip
--------------------------------------------------------------------------------
/Motor_PCB_V2/Motor_PCB.PrjPcb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Motor_PCB_V2/Motor_PCB.PrjPcb
--------------------------------------------------------------------------------
/Motor_PCB_V2/Motor_PCB.PrjPcbStructure:
--------------------------------------------------------------------------------
1 | Record=TopLevelDocument|FileName=Sheet1.SchDoc
2 |
--------------------------------------------------------------------------------
/Motor_PCB_V2/PCB1.PcbDoc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Motor_PCB_V2/PCB1.PcbDoc
--------------------------------------------------------------------------------
/Motor_PCB_V2/PcbLib1.PcbLib:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Motor_PCB_V2/PcbLib1.PcbLib
--------------------------------------------------------------------------------
/Motor_PCB_V2/Project Logs for Motor_PCB/PCB1 PCB ECO 11.02.2018 16-02-50.LOG:
--------------------------------------------------------------------------------
1 | Added Component: Designator=A1(XL4050_PCB)
2 | Add component. Clean all parameters for all variants
3 | Added Component: Designator=X1(STM32F4Discovery_P)
4 | Add component. Clean all parameters for all variants
5 | Added Component: Designator=X2(STM32F4Discovery_P)
6 | Add component. Clean all parameters for all variants
7 | Added Component: Designator=X5(AS5048A_input)
8 | Add component. Clean all parameters for all variants
9 | Added Pin To Net: NetName=+5V Pin=X2-4
10 | Added Pin To Net: NetName=+5V Pin=X5-1
11 | Added Net: Name=+5V
12 | Added Net: Name=12V
13 | Added Pin To Net: NetName=CS Pin=X2-46
14 | Added Pin To Net: NetName=CS Pin=X5-3
15 | Added Net: Name=CS
16 | Added Pin To Net: NetName=EN1 Pin=X1-11
17 | Added Net: Name=EN1
18 | Added Pin To Net: NetName=EN2 Pin=X1-14
19 | Added Net: Name=EN2
20 | Added Pin To Net: NetName=EN3 Pin=X1-13
21 | Added Net: Name=EN3
22 | Added Pin To Net: NetName=GND Pin=X2-50
23 | Added Pin To Net: NetName=GND Pin=X5-2
24 | Added Net: Name=GND
25 | Added Pin To Net: NetName=IN1 Pin=X1-44
26 | Added Net: Name=IN1
27 | Added Pin To Net: NetName=IN2 Pin=X1-45
28 | Added Net: Name=IN2
29 | Added Pin To Net: NetName=IN3 Pin=X1-46
30 | Added Net: Name=IN3
31 | Added Pin To Net: NetName=MISO Pin=X2-38
32 | Added Pin To Net: NetName=MISO Pin=X5-5
33 | Added Net: Name=MISO
34 | Added Pin To Net: NetName=MOSI Pin=X2-35
35 | Added Net: Name=MOSI
36 | Added Net: Name=NetA1_1
37 | Added Net: Name=NetA1_2
38 | Added Net: Name=NetC1_1
39 | Added Net: Name=NetC1_2
40 | Added Net: Name=NetC2_1
41 | Added Net: Name=nFAULT
42 | Added Pin To Net: NetName=nReset Pin=X1-15
43 | Added Net: Name=nReset
44 | Added Pin To Net: NetName=nSleep Pin=X1-16
45 | Added Net: Name=nSleep
46 | Added Net: Name=OUT1
47 | Added Net: Name=OUT2
48 | Added Net: Name=OUT3
49 | Added Pin To Net: NetName=SCLK Pin=X2-37
50 | Added Pin To Net: NetName=SCLK Pin=X5-4
51 | Added Net: Name=SCLK
52 | Added Net: Name=V3P3
53 | Added Class: Name=Sheet1
54 | Added Room: Name=Sheet1
55 |
--------------------------------------------------------------------------------
/Motor_PCB_V2/Project Logs for Motor_PCB/PCB1 PCB ECO 11.02.2018 16-12-08.LOG:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Motor_PCB_V2/Project Logs for Motor_PCB/PCB1 PCB ECO 11.02.2018 16-12-08.LOG
--------------------------------------------------------------------------------
/Motor_PCB_V2/Project Logs for Motor_PCB/PCB1 PCB ECO 11.02.2018 16-16-27.LOG:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Motor_PCB_V2/Project Logs for Motor_PCB/PCB1 PCB ECO 11.02.2018 16-16-27.LOG
--------------------------------------------------------------------------------
/Motor_PCB_V2/Project Logs for Motor_PCB/PCB1 PCB ECO 11.02.2018 16-18-26.LOG:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Motor_PCB_V2/Project Logs for Motor_PCB/PCB1 PCB ECO 11.02.2018 16-18-26.LOG
--------------------------------------------------------------------------------
/Motor_PCB_V2/Project Logs for Motor_PCB/PCB1 PCB ECO 11.02.2018 16-19-14.LOG:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Motor_PCB_V2/Project Logs for Motor_PCB/PCB1 PCB ECO 11.02.2018 16-19-14.LOG
--------------------------------------------------------------------------------
/Motor_PCB_V2/Project Logs for Motor_PCB/PCB1 PCB ECO 11.02.2018 16-19-50.LOG:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Motor_PCB_V2/Project Logs for Motor_PCB/PCB1 PCB ECO 11.02.2018 16-19-50.LOG
--------------------------------------------------------------------------------
/Motor_PCB_V2/Project Logs for Motor_PCB/PCB1 PCB ECO 11.02.2018 16-21-17.LOG:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Motor_PCB_V2/Project Logs for Motor_PCB/PCB1 PCB ECO 11.02.2018 16-21-17.LOG
--------------------------------------------------------------------------------
/Motor_PCB_V2/Project Logs for Motor_PCB/PCB1 PCB ECO 11.02.2018 16-23-42.LOG:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Motor_PCB_V2/Project Logs for Motor_PCB/PCB1 PCB ECO 11.02.2018 16-23-42.LOG
--------------------------------------------------------------------------------
/Motor_PCB_V2/Project Logs for Motor_PCB/PCB1 PCB ECO 11.02.2018 16-31-01.LOG:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Motor_PCB_V2/Project Logs for Motor_PCB/PCB1 PCB ECO 11.02.2018 16-31-01.LOG
--------------------------------------------------------------------------------
/Motor_PCB_V2/Project Logs for Motor_PCB/PCB1 PCB ECO 11.02.2018 18-49-05.LOG:
--------------------------------------------------------------------------------
1 | Removed Pin From Net: NetName=GND Pin=X5-2
2 | Removed Pin From Net: NetName=CS Pin=X5-3
3 | Added Pin To Net: NetName=CS Pin=X5-2
4 | Added Pin To Net: NetName=GND Pin=X5-3
5 | Added Room: Name=Sheet1
6 |
--------------------------------------------------------------------------------
/Motor_PCB_V2/Project Logs for Motor_PCB/PCB1 PCB ECO 11.02.2018 18-53-23.LOG:
--------------------------------------------------------------------------------
1 | Added Room: Name=Sheet1
2 |
--------------------------------------------------------------------------------
/Motor_PCB_V2/Project Logs for Motor_PCB/PCB1 PCB ECO 11.02.2018 18-55-04.LOG:
--------------------------------------------------------------------------------
1 | Removed Pin From Net: NetName=CS Pin=X5-2
2 | Removed Pin From Net: NetName=GND Pin=X5-3
3 | Removed Pin From Net: NetName=SCLK Pin=X5-4
4 | Removed Pin From Net: NetName=MISO Pin=X5-5
5 | Added Pin To Net: NetName=MISO Pin=X5-2
6 | Added Pin To Net: NetName=CS Pin=X5-3
7 | Added Pin To Net: NetName=GND Pin=X5-4
8 | Added Pin To Net: NetName=SCLK Pin=X5-5
9 | Added Room: Name=Sheet1
10 |
--------------------------------------------------------------------------------
/Motor_PCB_V2/Project Logs for Motor_PCB/PCB1 PCB ECO 11.02.2018 19-00-00.LOG:
--------------------------------------------------------------------------------
1 | Removed Pin From Net: NetName=EN3 Pin=X1-13
2 | Removed Pin From Net: NetName=EN2 Pin=X1-14
3 | Removed Pin From Net: NetName=nReset Pin=X1-15
4 | Added Pin To Net: NetName=EN2 Pin=X1-13
5 | Added Pin To Net: NetName=nReset Pin=X1-14
6 | Added Pin To Net: NetName=EN3 Pin=X1-15
7 | Added Room: Name=Sheet1
8 |
--------------------------------------------------------------------------------
/Motor_PCB_V2/Project Logs for Motor_PCB/PCB1 PCB ECO 11.02.2018 19-17-21.LOG:
--------------------------------------------------------------------------------
1 | Added Pin To Net: NetName=GND Pin=A1-2
2 | Added Pin To Net: NetName=GND Pin=X4-2
3 | Change Net Name : Old Net Name=NetA1_1 New Net Name=8-36V
4 | Added Member To Class: ClassName=Sheet1 Member=Component D2 *
5 | Added Room: Name=Sheet1
6 |
--------------------------------------------------------------------------------
/Motor_PCB_V2/Project Logs for Motor_PCB/Sheet1 SCH ECO 11.02.2018 14-06-46.LOG:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Motor_PCB_V2/Project Logs for Motor_PCB/Sheet1 SCH ECO 11.02.2018 14-06-46.LOG
--------------------------------------------------------------------------------
/Motor_PCB_V2/Project Logs for Motor_PCB/Sheet1 SCH ECO 11.02.2018 14-20-23.LOG:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Motor_PCB_V2/Project Logs for Motor_PCB/Sheet1 SCH ECO 11.02.2018 14-20-23.LOG
--------------------------------------------------------------------------------
/Motor_PCB_V2/Project Logs for Motor_PCB/Sheet1 SCH ECO 11.02.2018 14-35-30.LOG:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Motor_PCB_V2/Project Logs for Motor_PCB/Sheet1 SCH ECO 11.02.2018 14-35-30.LOG
--------------------------------------------------------------------------------
/Motor_PCB_V2/Project Logs for Motor_PCB/Sheet1 SCH ECO 11.02.2018 14-37-27.LOG:
--------------------------------------------------------------------------------
1 | Change Component Designator: Old Designator=A? New Designator=A1
2 | Change Component Designator: Old Designator=C? New Designator=C1
3 | Change Component Designator: Old Designator=C? New Designator=C2
4 | Change Component Designator: Old Designator=C? New Designator=C3
5 | Change Component Designator: Old Designator=C? New Designator=C4
6 | Change Component Designator: Old Designator=C? New Designator=C5
7 | Change Component Designator: Old Designator=C? New Designator=C6
8 | Change Component Designator: Old Designator=C? New Designator=C7
9 | Change Component Designator: Old Designator=D? New Designator=D1
10 | Change Component Designator: Old Designator=D? New Designator=D2
11 | Change Component Designator: Old Designator=Motor? New Designator=Motor1
12 | Change Component Designator: Old Designator=R? New Designator=R1
13 | Change Component Designator: Old Designator=X? New Designator=X1
14 | Change Component Designator: Old Designator=X? New Designator=X2
15 | Change Component Designator: Old Designator=X? New Designator=X3
16 | Change Component Designator: Old Designator=X? New Designator=X4
17 |
--------------------------------------------------------------------------------
/Motor_PCB_V2/Project Logs for Motor_PCB/Sheet1 SCH ECO 11.02.2018 15-38-45.LOG:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Motor_PCB_V2/Project Logs for Motor_PCB/Sheet1 SCH ECO 11.02.2018 15-38-45.LOG
--------------------------------------------------------------------------------
/Motor_PCB_V2/Project Logs for Motor_PCB/Sheet1 SCH ECO 11.02.2018 15-39-32.LOG:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Motor_PCB_V2/Project Logs for Motor_PCB/Sheet1 SCH ECO 11.02.2018 15-39-32.LOG
--------------------------------------------------------------------------------
/Motor_PCB_V2/Project Logs for Motor_PCB/Sheet1 SCH ECO 11.02.2018 15-42-16.LOG:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Motor_PCB_V2/Project Logs for Motor_PCB/Sheet1 SCH ECO 11.02.2018 15-42-16.LOG
--------------------------------------------------------------------------------
/Motor_PCB_V2/Project Logs for Motor_PCB/Sheet1 SCH ECO 11.02.2018 15-42-45.LOG:
--------------------------------------------------------------------------------
1 | Change Component Designator: Old Designator=X? New Designator=X5
2 |
--------------------------------------------------------------------------------
/Motor_PCB_V2/Project Logs for Motor_PCB/Sheet1 SCH ECO 11.02.2018 16-01-27.LOG:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Motor_PCB_V2/Project Logs for Motor_PCB/Sheet1 SCH ECO 11.02.2018 16-01-27.LOG
--------------------------------------------------------------------------------
/Motor_PCB_V2/Project Logs for Motor_PCB/Sheet1 SCH ECO 11.02.2018 16-02-00.LOG:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Motor_PCB_V2/Project Logs for Motor_PCB/Sheet1 SCH ECO 11.02.2018 16-02-00.LOG
--------------------------------------------------------------------------------
/Motor_PCB_V2/Project Logs for Motor_PCB/Sheet1 SCH ECO 11.02.2018 16-11-50.LOG:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Motor_PCB_V2/Project Logs for Motor_PCB/Sheet1 SCH ECO 11.02.2018 16-11-50.LOG
--------------------------------------------------------------------------------
/Motor_PCB_V2/Project Logs for Motor_PCB/Sheet1 SCH ECO 11.02.2018 16-18-11.LOG:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Motor_PCB_V2/Project Logs for Motor_PCB/Sheet1 SCH ECO 11.02.2018 16-18-11.LOG
--------------------------------------------------------------------------------
/Motor_PCB_V2/Project Logs for Motor_PCB/Sheet1 SCH ECO 11.02.2018 16-21-10.LOG:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Motor_PCB_V2/Project Logs for Motor_PCB/Sheet1 SCH ECO 11.02.2018 16-21-10.LOG
--------------------------------------------------------------------------------
/Motor_PCB_V2/Project Logs for Motor_PCB/Sheet1 SCH ECO 11.02.2018 16-22-37.LOG:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Motor_PCB_V2/Project Logs for Motor_PCB/Sheet1 SCH ECO 11.02.2018 16-22-37.LOG
--------------------------------------------------------------------------------
/Motor_PCB_V2/Project Logs for Motor_PCB/Sheet1 SCH ECO 11.02.2018 16-22-53.LOG:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Motor_PCB_V2/Project Logs for Motor_PCB/Sheet1 SCH ECO 11.02.2018 16-22-53.LOG
--------------------------------------------------------------------------------
/Motor_PCB_V2/Project Logs for Motor_PCB/Sheet1 SCH ECO 11.02.2018 18-48-44.LOG:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Motor_PCB_V2/Project Logs for Motor_PCB/Sheet1 SCH ECO 11.02.2018 18-48-44.LOG
--------------------------------------------------------------------------------
/Motor_PCB_V2/Project Logs for Motor_PCB/Sheet1 SCH ECO 11.02.2018 18-53-12.LOG:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Motor_PCB_V2/Project Logs for Motor_PCB/Sheet1 SCH ECO 11.02.2018 18-53-12.LOG
--------------------------------------------------------------------------------
/Motor_PCB_V2/Project Logs for Motor_PCB/Sheet1 SCH ECO 11.02.2018 18-54-11.LOG:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Motor_PCB_V2/Project Logs for Motor_PCB/Sheet1 SCH ECO 11.02.2018 18-54-11.LOG
--------------------------------------------------------------------------------
/Motor_PCB_V2/Project Outputs for Motor_PCB/Design Rule Check - PCB1.drc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Motor_PCB_V2/Project Outputs for Motor_PCB/Design Rule Check - PCB1.drc
--------------------------------------------------------------------------------
/Motor_PCB_V2/Project Outputs for Motor_PCB/Design Rule Check - PCB1.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Motor_PCB_V2/Project Outputs for Motor_PCB/Design Rule Check - PCB1.html
--------------------------------------------------------------------------------
/Motor_PCB_V2/Schlib1.SchLib:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Motor_PCB_V2/Schlib1.SchLib
--------------------------------------------------------------------------------
/Motor_PCB_V2/Sheet1.SchDoc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Motor_PCB_V2/Sheet1.SchDoc
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | ## BLDC position control project ##
2 |
3 | ### Youtube video ###
4 |
5 | [](https://www.youtube.com/watch?v=04u3CLnnJWE)
6 |
7 | Three techniques have been implemented:
8 |
9 | - Position control with sinusoidal commutation -`sinus_control_V2`
10 | - Position control with simplified FOC (no current sensing) - `FOC`
11 | - Position control with special sinusoidal commutation(vectol angle limitation) - `combined_control_V3`
12 |
13 | ### Structure ###
14 |
15 | Essential elements:
16 |
17 | - STM32F4-Discovery
18 | - DRV8313
19 | - AS5048A
20 |
21 | 
22 |
23 | ### Electrical scheme ###
24 | 
25 |
26 |
27 |
28 |
--------------------------------------------------------------------------------
/graph/El.JPG:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/graph/El.JPG
--------------------------------------------------------------------------------
/graph/Structure.JPG:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/graph/Structure.JPG
--------------------------------------------------------------------------------
/Новый текстовый документ.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Новый текстовый документ.txt
--------------------------------------------------------------------------------
/Сравнение методов управления двигателями FOC | Simlified FOC | Sinusoidal.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/3272fe0a05e58f74295e78110bd1a588dc1ed9f5/Сравнение методов управления двигателями FOC | Simlified FOC | Sinusoidal.pdf
--------------------------------------------------------------------------------