├── .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: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/.gitignore -------------------------------------------------------------------------------- /Keil_Project/DebugConfig/Target_1_STM32F407VGTx.dbgconf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Keil_Project/DebugConfig/Target_1_STM32F407VGTx.dbgconf -------------------------------------------------------------------------------- /Keil_Project/EventRecorderStub.scvd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Keil_Project/EventRecorderStub.scvd -------------------------------------------------------------------------------- /Keil_Project/LIB/SPL/inc/misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Keil_Project/LIB/SPL/inc/misc.h -------------------------------------------------------------------------------- /Keil_Project/LIB/SPL/inc/stm32f4xx_adc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Keil_Project/LIB/SPL/inc/stm32f4xx_adc.h -------------------------------------------------------------------------------- /Keil_Project/LIB/SPL/inc/stm32f4xx_can.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Keil_Project/LIB/SPL/inc/stm32f4xx_can.h -------------------------------------------------------------------------------- /Keil_Project/LIB/SPL/inc/stm32f4xx_cec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Keil_Project/LIB/SPL/inc/stm32f4xx_cec.h -------------------------------------------------------------------------------- /Keil_Project/LIB/SPL/inc/stm32f4xx_crc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Keil_Project/LIB/SPL/inc/stm32f4xx_crc.h -------------------------------------------------------------------------------- /Keil_Project/LIB/SPL/inc/stm32f4xx_cryp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Keil_Project/LIB/SPL/inc/stm32f4xx_cryp.h -------------------------------------------------------------------------------- /Keil_Project/LIB/SPL/inc/stm32f4xx_dac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Keil_Project/LIB/SPL/inc/stm32f4xx_dac.h -------------------------------------------------------------------------------- /Keil_Project/LIB/SPL/inc/stm32f4xx_dbgmcu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Keil_Project/LIB/SPL/inc/stm32f4xx_dbgmcu.h -------------------------------------------------------------------------------- /Keil_Project/LIB/SPL/inc/stm32f4xx_dcmi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Keil_Project/LIB/SPL/inc/stm32f4xx_dcmi.h -------------------------------------------------------------------------------- /Keil_Project/LIB/SPL/inc/stm32f4xx_dfsdm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Keil_Project/LIB/SPL/inc/stm32f4xx_dfsdm.h -------------------------------------------------------------------------------- /Keil_Project/LIB/SPL/inc/stm32f4xx_dma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Keil_Project/LIB/SPL/inc/stm32f4xx_dma.h -------------------------------------------------------------------------------- /Keil_Project/LIB/SPL/inc/stm32f4xx_dma2d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Keil_Project/LIB/SPL/inc/stm32f4xx_dma2d.h -------------------------------------------------------------------------------- /Keil_Project/LIB/SPL/inc/stm32f4xx_dsi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Keil_Project/LIB/SPL/inc/stm32f4xx_dsi.h -------------------------------------------------------------------------------- /Keil_Project/LIB/SPL/inc/stm32f4xx_exti.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Keil_Project/LIB/SPL/inc/stm32f4xx_exti.h -------------------------------------------------------------------------------- /Keil_Project/LIB/SPL/inc/stm32f4xx_flash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Keil_Project/LIB/SPL/inc/stm32f4xx_flash.h -------------------------------------------------------------------------------- /Keil_Project/LIB/SPL/inc/stm32f4xx_flash_ramfunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Keil_Project/LIB/SPL/inc/stm32f4xx_flash_ramfunc.h -------------------------------------------------------------------------------- /Keil_Project/LIB/SPL/inc/stm32f4xx_fmc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Keil_Project/LIB/SPL/inc/stm32f4xx_fmc.h -------------------------------------------------------------------------------- /Keil_Project/LIB/SPL/inc/stm32f4xx_fmpi2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Keil_Project/LIB/SPL/inc/stm32f4xx_fmpi2c.h -------------------------------------------------------------------------------- /Keil_Project/LIB/SPL/inc/stm32f4xx_fsmc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Keil_Project/LIB/SPL/inc/stm32f4xx_fsmc.h -------------------------------------------------------------------------------- /Keil_Project/LIB/SPL/inc/stm32f4xx_gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Keil_Project/LIB/SPL/inc/stm32f4xx_gpio.h -------------------------------------------------------------------------------- /Keil_Project/LIB/SPL/inc/stm32f4xx_hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Keil_Project/LIB/SPL/inc/stm32f4xx_hash.h -------------------------------------------------------------------------------- /Keil_Project/LIB/SPL/inc/stm32f4xx_i2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Keil_Project/LIB/SPL/inc/stm32f4xx_i2c.h -------------------------------------------------------------------------------- /Keil_Project/LIB/SPL/inc/stm32f4xx_iwdg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Keil_Project/LIB/SPL/inc/stm32f4xx_iwdg.h -------------------------------------------------------------------------------- /Keil_Project/LIB/SPL/inc/stm32f4xx_lptim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Keil_Project/LIB/SPL/inc/stm32f4xx_lptim.h -------------------------------------------------------------------------------- /Keil_Project/LIB/SPL/inc/stm32f4xx_ltdc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Keil_Project/LIB/SPL/inc/stm32f4xx_ltdc.h -------------------------------------------------------------------------------- /Keil_Project/LIB/SPL/inc/stm32f4xx_pwr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Keil_Project/LIB/SPL/inc/stm32f4xx_pwr.h -------------------------------------------------------------------------------- /Keil_Project/LIB/SPL/inc/stm32f4xx_qspi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Keil_Project/LIB/SPL/inc/stm32f4xx_qspi.h -------------------------------------------------------------------------------- /Keil_Project/LIB/SPL/inc/stm32f4xx_rcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Keil_Project/LIB/SPL/inc/stm32f4xx_rcc.h -------------------------------------------------------------------------------- /Keil_Project/LIB/SPL/inc/stm32f4xx_rng.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Keil_Project/LIB/SPL/inc/stm32f4xx_rng.h -------------------------------------------------------------------------------- /Keil_Project/LIB/SPL/inc/stm32f4xx_rtc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Keil_Project/LIB/SPL/inc/stm32f4xx_rtc.h -------------------------------------------------------------------------------- /Keil_Project/LIB/SPL/inc/stm32f4xx_sai.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Keil_Project/LIB/SPL/inc/stm32f4xx_sai.h -------------------------------------------------------------------------------- /Keil_Project/LIB/SPL/inc/stm32f4xx_sdio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Keil_Project/LIB/SPL/inc/stm32f4xx_sdio.h -------------------------------------------------------------------------------- /Keil_Project/LIB/SPL/inc/stm32f4xx_spdifrx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Keil_Project/LIB/SPL/inc/stm32f4xx_spdifrx.h -------------------------------------------------------------------------------- /Keil_Project/LIB/SPL/inc/stm32f4xx_spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Keil_Project/LIB/SPL/inc/stm32f4xx_spi.h -------------------------------------------------------------------------------- /Keil_Project/LIB/SPL/inc/stm32f4xx_syscfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Keil_Project/LIB/SPL/inc/stm32f4xx_syscfg.h -------------------------------------------------------------------------------- /Keil_Project/LIB/SPL/inc/stm32f4xx_tim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Keil_Project/LIB/SPL/inc/stm32f4xx_tim.h -------------------------------------------------------------------------------- /Keil_Project/LIB/SPL/inc/stm32f4xx_usart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Keil_Project/LIB/SPL/inc/stm32f4xx_usart.h -------------------------------------------------------------------------------- /Keil_Project/LIB/SPL/inc/stm32f4xx_wwdg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Keil_Project/LIB/SPL/inc/stm32f4xx_wwdg.h -------------------------------------------------------------------------------- /Keil_Project/LIB/SPL/src/misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Keil_Project/LIB/SPL/src/misc.c -------------------------------------------------------------------------------- /Keil_Project/LIB/SPL/src/stm32f4xx_adc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Keil_Project/LIB/SPL/src/stm32f4xx_adc.c -------------------------------------------------------------------------------- /Keil_Project/LIB/SPL/src/stm32f4xx_can.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Keil_Project/LIB/SPL/src/stm32f4xx_can.c -------------------------------------------------------------------------------- /Keil_Project/LIB/SPL/src/stm32f4xx_cec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Keil_Project/LIB/SPL/src/stm32f4xx_cec.c -------------------------------------------------------------------------------- /Keil_Project/LIB/SPL/src/stm32f4xx_crc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Keil_Project/LIB/SPL/src/stm32f4xx_crc.c -------------------------------------------------------------------------------- /Keil_Project/LIB/SPL/src/stm32f4xx_cryp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Keil_Project/LIB/SPL/src/stm32f4xx_cryp.c -------------------------------------------------------------------------------- /Keil_Project/LIB/SPL/src/stm32f4xx_cryp_aes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Keil_Project/LIB/SPL/src/stm32f4xx_cryp_aes.c -------------------------------------------------------------------------------- /Keil_Project/LIB/SPL/src/stm32f4xx_cryp_des.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Keil_Project/LIB/SPL/src/stm32f4xx_cryp_des.c -------------------------------------------------------------------------------- /Keil_Project/LIB/SPL/src/stm32f4xx_cryp_tdes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Keil_Project/LIB/SPL/src/stm32f4xx_cryp_tdes.c -------------------------------------------------------------------------------- /Keil_Project/LIB/SPL/src/stm32f4xx_dac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Keil_Project/LIB/SPL/src/stm32f4xx_dac.c -------------------------------------------------------------------------------- /Keil_Project/LIB/SPL/src/stm32f4xx_dbgmcu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Keil_Project/LIB/SPL/src/stm32f4xx_dbgmcu.c -------------------------------------------------------------------------------- /Keil_Project/LIB/SPL/src/stm32f4xx_dcmi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Keil_Project/LIB/SPL/src/stm32f4xx_dcmi.c -------------------------------------------------------------------------------- /Keil_Project/LIB/SPL/src/stm32f4xx_dfsdm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Keil_Project/LIB/SPL/src/stm32f4xx_dfsdm.c -------------------------------------------------------------------------------- /Keil_Project/LIB/SPL/src/stm32f4xx_dma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Keil_Project/LIB/SPL/src/stm32f4xx_dma.c -------------------------------------------------------------------------------- /Keil_Project/LIB/SPL/src/stm32f4xx_dma2d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Keil_Project/LIB/SPL/src/stm32f4xx_dma2d.c -------------------------------------------------------------------------------- /Keil_Project/LIB/SPL/src/stm32f4xx_dsi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Keil_Project/LIB/SPL/src/stm32f4xx_dsi.c -------------------------------------------------------------------------------- /Keil_Project/LIB/SPL/src/stm32f4xx_exti.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Keil_Project/LIB/SPL/src/stm32f4xx_exti.c -------------------------------------------------------------------------------- /Keil_Project/LIB/SPL/src/stm32f4xx_flash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Keil_Project/LIB/SPL/src/stm32f4xx_flash.c -------------------------------------------------------------------------------- /Keil_Project/LIB/SPL/src/stm32f4xx_flash_ramfunc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Keil_Project/LIB/SPL/src/stm32f4xx_flash_ramfunc.c -------------------------------------------------------------------------------- /Keil_Project/LIB/SPL/src/stm32f4xx_fmc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Keil_Project/LIB/SPL/src/stm32f4xx_fmc.c -------------------------------------------------------------------------------- /Keil_Project/LIB/SPL/src/stm32f4xx_fmpi2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Keil_Project/LIB/SPL/src/stm32f4xx_fmpi2c.c -------------------------------------------------------------------------------- /Keil_Project/LIB/SPL/src/stm32f4xx_fsmc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Keil_Project/LIB/SPL/src/stm32f4xx_fsmc.c -------------------------------------------------------------------------------- /Keil_Project/LIB/SPL/src/stm32f4xx_gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Keil_Project/LIB/SPL/src/stm32f4xx_gpio.c -------------------------------------------------------------------------------- /Keil_Project/LIB/SPL/src/stm32f4xx_hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Keil_Project/LIB/SPL/src/stm32f4xx_hash.c -------------------------------------------------------------------------------- /Keil_Project/LIB/SPL/src/stm32f4xx_hash_md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Keil_Project/LIB/SPL/src/stm32f4xx_hash_md5.c -------------------------------------------------------------------------------- /Keil_Project/LIB/SPL/src/stm32f4xx_hash_sha1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Keil_Project/LIB/SPL/src/stm32f4xx_hash_sha1.c -------------------------------------------------------------------------------- /Keil_Project/LIB/SPL/src/stm32f4xx_i2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Keil_Project/LIB/SPL/src/stm32f4xx_i2c.c -------------------------------------------------------------------------------- /Keil_Project/LIB/SPL/src/stm32f4xx_iwdg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Keil_Project/LIB/SPL/src/stm32f4xx_iwdg.c -------------------------------------------------------------------------------- /Keil_Project/LIB/SPL/src/stm32f4xx_lptim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Keil_Project/LIB/SPL/src/stm32f4xx_lptim.c -------------------------------------------------------------------------------- /Keil_Project/LIB/SPL/src/stm32f4xx_ltdc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Keil_Project/LIB/SPL/src/stm32f4xx_ltdc.c -------------------------------------------------------------------------------- /Keil_Project/LIB/SPL/src/stm32f4xx_pwr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Keil_Project/LIB/SPL/src/stm32f4xx_pwr.c -------------------------------------------------------------------------------- /Keil_Project/LIB/SPL/src/stm32f4xx_qspi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Keil_Project/LIB/SPL/src/stm32f4xx_qspi.c -------------------------------------------------------------------------------- /Keil_Project/LIB/SPL/src/stm32f4xx_rcc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Keil_Project/LIB/SPL/src/stm32f4xx_rcc.c -------------------------------------------------------------------------------- /Keil_Project/LIB/SPL/src/stm32f4xx_rng.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Keil_Project/LIB/SPL/src/stm32f4xx_rng.c -------------------------------------------------------------------------------- /Keil_Project/LIB/SPL/src/stm32f4xx_rtc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Keil_Project/LIB/SPL/src/stm32f4xx_rtc.c -------------------------------------------------------------------------------- /Keil_Project/LIB/SPL/src/stm32f4xx_sai.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Keil_Project/LIB/SPL/src/stm32f4xx_sai.c -------------------------------------------------------------------------------- /Keil_Project/LIB/SPL/src/stm32f4xx_sdio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Keil_Project/LIB/SPL/src/stm32f4xx_sdio.c -------------------------------------------------------------------------------- /Keil_Project/LIB/SPL/src/stm32f4xx_spdifrx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Keil_Project/LIB/SPL/src/stm32f4xx_spdifrx.c -------------------------------------------------------------------------------- /Keil_Project/LIB/SPL/src/stm32f4xx_spi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Keil_Project/LIB/SPL/src/stm32f4xx_spi.c -------------------------------------------------------------------------------- /Keil_Project/LIB/SPL/src/stm32f4xx_syscfg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Keil_Project/LIB/SPL/src/stm32f4xx_syscfg.c -------------------------------------------------------------------------------- /Keil_Project/LIB/SPL/src/stm32f4xx_tim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Keil_Project/LIB/SPL/src/stm32f4xx_tim.c -------------------------------------------------------------------------------- /Keil_Project/LIB/SPL/src/stm32f4xx_usart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Keil_Project/LIB/SPL/src/stm32f4xx_usart.c -------------------------------------------------------------------------------- /Keil_Project/LIB/SPL/src/stm32f4xx_wwdg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Keil_Project/LIB/SPL/src/stm32f4xx_wwdg.c -------------------------------------------------------------------------------- /Keil_Project/LIB/as5048/as5048.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Keil_Project/LIB/as5048/as5048.c -------------------------------------------------------------------------------- /Keil_Project/LIB/as5048/as5048.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Keil_Project/LIB/as5048/as5048.h -------------------------------------------------------------------------------- /Keil_Project/LIB/ini/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Keil_Project/LIB/ini/init.c -------------------------------------------------------------------------------- /Keil_Project/LIB/ini/init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Keil_Project/LIB/ini/init.h -------------------------------------------------------------------------------- /Keil_Project/LIB/motor/motor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Keil_Project/LIB/motor/motor.c -------------------------------------------------------------------------------- /Keil_Project/LIB/motor/motor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Keil_Project/LIB/motor/motor.h -------------------------------------------------------------------------------- /Keil_Project/LIB/mylib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Keil_Project/LIB/mylib.c -------------------------------------------------------------------------------- /Keil_Project/LIB/mylib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Keil_Project/LIB/mylib.h -------------------------------------------------------------------------------- /Keil_Project/LIB/stm32f4xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Keil_Project/LIB/stm32f4xx.h -------------------------------------------------------------------------------- /Keil_Project/LIB/stm32f4xx_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Keil_Project/LIB/stm32f4xx_conf.h -------------------------------------------------------------------------------- /Keil_Project/Listings/SPI_FOC.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Keil_Project/Listings/SPI_FOC.map -------------------------------------------------------------------------------- /Keil_Project/Listings/startup_stm32f407xx.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Keil_Project/Listings/startup_stm32f407xx.lst -------------------------------------------------------------------------------- /Keil_Project/Objects/ExtDll.iex: -------------------------------------------------------------------------------- 1 | [EXTDLL] 2 | Count=0 3 | -------------------------------------------------------------------------------- /Keil_Project/Objects/SPI_FOC.axf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Keil_Project/Objects/SPI_FOC.axf -------------------------------------------------------------------------------- /Keil_Project/Objects/SPI_FOC.build_log.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Keil_Project/Objects/SPI_FOC.build_log.htm -------------------------------------------------------------------------------- /Keil_Project/Objects/SPI_FOC.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Keil_Project/Objects/SPI_FOC.htm -------------------------------------------------------------------------------- /Keil_Project/Objects/SPI_FOC.lnp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Keil_Project/Objects/SPI_FOC.lnp -------------------------------------------------------------------------------- /Keil_Project/Objects/SPI_FOC_Target 1.dep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Keil_Project/Objects/SPI_FOC_Target 1.dep -------------------------------------------------------------------------------- /Keil_Project/Objects/as5048.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Keil_Project/Objects/as5048.crf -------------------------------------------------------------------------------- /Keil_Project/Objects/as5048.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Keil_Project/Objects/as5048.d -------------------------------------------------------------------------------- /Keil_Project/Objects/as5048.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Keil_Project/Objects/as5048.o -------------------------------------------------------------------------------- /Keil_Project/Objects/init.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Keil_Project/Objects/init.crf -------------------------------------------------------------------------------- /Keil_Project/Objects/init.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Keil_Project/Objects/init.d -------------------------------------------------------------------------------- /Keil_Project/Objects/init.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Keil_Project/Objects/init.o -------------------------------------------------------------------------------- /Keil_Project/Objects/main.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Keil_Project/Objects/main.crf -------------------------------------------------------------------------------- /Keil_Project/Objects/main.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Keil_Project/Objects/main.d -------------------------------------------------------------------------------- /Keil_Project/Objects/main.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Keil_Project/Objects/main.o -------------------------------------------------------------------------------- /Keil_Project/Objects/misc.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Keil_Project/Objects/misc.crf -------------------------------------------------------------------------------- /Keil_Project/Objects/misc.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Keil_Project/Objects/misc.d -------------------------------------------------------------------------------- /Keil_Project/Objects/misc.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Keil_Project/Objects/misc.o -------------------------------------------------------------------------------- /Keil_Project/Objects/motor.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Keil_Project/Objects/motor.crf -------------------------------------------------------------------------------- /Keil_Project/Objects/motor.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Keil_Project/Objects/motor.d -------------------------------------------------------------------------------- /Keil_Project/Objects/motor.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Keil_Project/Objects/motor.o -------------------------------------------------------------------------------- /Keil_Project/Objects/mylib.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Keil_Project/Objects/mylib.crf -------------------------------------------------------------------------------- /Keil_Project/Objects/mylib.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Keil_Project/Objects/mylib.d -------------------------------------------------------------------------------- /Keil_Project/Objects/mylib.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Keil_Project/Objects/mylib.o -------------------------------------------------------------------------------- /Keil_Project/Objects/startup_stm32f407xx.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Keil_Project/Objects/startup_stm32f407xx.d -------------------------------------------------------------------------------- /Keil_Project/Objects/startup_stm32f407xx.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Keil_Project/Objects/startup_stm32f407xx.o -------------------------------------------------------------------------------- /Keil_Project/Objects/stm32f4xx_adc.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Keil_Project/Objects/stm32f4xx_adc.crf -------------------------------------------------------------------------------- /Keil_Project/Objects/stm32f4xx_adc.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Keil_Project/Objects/stm32f4xx_adc.d -------------------------------------------------------------------------------- /Keil_Project/Objects/stm32f4xx_adc.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Keil_Project/Objects/stm32f4xx_adc.o -------------------------------------------------------------------------------- /Keil_Project/Objects/stm32f4xx_can.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Keil_Project/Objects/stm32f4xx_can.crf -------------------------------------------------------------------------------- /Keil_Project/Objects/stm32f4xx_can.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Keil_Project/Objects/stm32f4xx_can.d -------------------------------------------------------------------------------- /Keil_Project/Objects/stm32f4xx_can.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Keil_Project/Objects/stm32f4xx_can.o -------------------------------------------------------------------------------- /Keil_Project/Objects/stm32f4xx_cec.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Keil_Project/Objects/stm32f4xx_cec.crf -------------------------------------------------------------------------------- /Keil_Project/Objects/stm32f4xx_cec.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Keil_Project/Objects/stm32f4xx_cec.d -------------------------------------------------------------------------------- /Keil_Project/Objects/stm32f4xx_cec.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Keil_Project/Objects/stm32f4xx_cec.o -------------------------------------------------------------------------------- /Keil_Project/Objects/stm32f4xx_crc.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Keil_Project/Objects/stm32f4xx_crc.crf -------------------------------------------------------------------------------- /Keil_Project/Objects/stm32f4xx_crc.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Keil_Project/Objects/stm32f4xx_crc.d -------------------------------------------------------------------------------- /Keil_Project/Objects/stm32f4xx_crc.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Keil_Project/Objects/stm32f4xx_crc.o -------------------------------------------------------------------------------- /Keil_Project/Objects/stm32f4xx_cryp.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Keil_Project/Objects/stm32f4xx_cryp.crf -------------------------------------------------------------------------------- /Keil_Project/Objects/stm32f4xx_cryp.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Keil_Project/Objects/stm32f4xx_cryp.d -------------------------------------------------------------------------------- /Keil_Project/Objects/stm32f4xx_cryp.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Keil_Project/Objects/stm32f4xx_cryp.o -------------------------------------------------------------------------------- /Keil_Project/Objects/stm32f4xx_cryp_aes.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Keil_Project/Objects/stm32f4xx_cryp_aes.crf -------------------------------------------------------------------------------- /Keil_Project/Objects/stm32f4xx_cryp_aes.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Keil_Project/Objects/stm32f4xx_cryp_aes.d -------------------------------------------------------------------------------- /Keil_Project/Objects/stm32f4xx_cryp_aes.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Keil_Project/Objects/stm32f4xx_cryp_aes.o -------------------------------------------------------------------------------- /Keil_Project/Objects/stm32f4xx_cryp_des.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Keil_Project/Objects/stm32f4xx_cryp_des.crf -------------------------------------------------------------------------------- /Keil_Project/Objects/stm32f4xx_cryp_des.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Keil_Project/Objects/stm32f4xx_cryp_des.d -------------------------------------------------------------------------------- /Keil_Project/Objects/stm32f4xx_cryp_des.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Keil_Project/Objects/stm32f4xx_cryp_des.o -------------------------------------------------------------------------------- /Keil_Project/Objects/stm32f4xx_cryp_tdes.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Keil_Project/Objects/stm32f4xx_cryp_tdes.crf -------------------------------------------------------------------------------- /Keil_Project/Objects/stm32f4xx_cryp_tdes.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Keil_Project/Objects/stm32f4xx_cryp_tdes.d -------------------------------------------------------------------------------- /Keil_Project/Objects/stm32f4xx_cryp_tdes.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Keil_Project/Objects/stm32f4xx_cryp_tdes.o -------------------------------------------------------------------------------- /Keil_Project/Objects/stm32f4xx_dac.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Keil_Project/Objects/stm32f4xx_dac.crf -------------------------------------------------------------------------------- /Keil_Project/Objects/stm32f4xx_dac.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Keil_Project/Objects/stm32f4xx_dac.d -------------------------------------------------------------------------------- /Keil_Project/Objects/stm32f4xx_dac.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Keil_Project/Objects/stm32f4xx_dac.o -------------------------------------------------------------------------------- /Keil_Project/Objects/stm32f4xx_dbgmcu.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Keil_Project/Objects/stm32f4xx_dbgmcu.crf -------------------------------------------------------------------------------- /Keil_Project/Objects/stm32f4xx_dbgmcu.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Keil_Project/Objects/stm32f4xx_dbgmcu.d -------------------------------------------------------------------------------- /Keil_Project/Objects/stm32f4xx_dbgmcu.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Keil_Project/Objects/stm32f4xx_dbgmcu.o -------------------------------------------------------------------------------- /Keil_Project/Objects/stm32f4xx_dcmi.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Keil_Project/Objects/stm32f4xx_dcmi.crf -------------------------------------------------------------------------------- /Keil_Project/Objects/stm32f4xx_dcmi.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Keil_Project/Objects/stm32f4xx_dcmi.d -------------------------------------------------------------------------------- /Keil_Project/Objects/stm32f4xx_dcmi.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Keil_Project/Objects/stm32f4xx_dcmi.o -------------------------------------------------------------------------------- /Keil_Project/Objects/stm32f4xx_dfsdm.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Keil_Project/Objects/stm32f4xx_dfsdm.crf -------------------------------------------------------------------------------- /Keil_Project/Objects/stm32f4xx_dfsdm.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Keil_Project/Objects/stm32f4xx_dfsdm.d -------------------------------------------------------------------------------- /Keil_Project/Objects/stm32f4xx_dfsdm.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Keil_Project/Objects/stm32f4xx_dfsdm.o -------------------------------------------------------------------------------- /Keil_Project/Objects/stm32f4xx_dma.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Keil_Project/Objects/stm32f4xx_dma.crf -------------------------------------------------------------------------------- /Keil_Project/Objects/stm32f4xx_dma.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Keil_Project/Objects/stm32f4xx_dma.d -------------------------------------------------------------------------------- /Keil_Project/Objects/stm32f4xx_dma.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Keil_Project/Objects/stm32f4xx_dma.o -------------------------------------------------------------------------------- /Keil_Project/Objects/stm32f4xx_dma2d.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Keil_Project/Objects/stm32f4xx_dma2d.crf -------------------------------------------------------------------------------- /Keil_Project/Objects/stm32f4xx_dma2d.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Keil_Project/Objects/stm32f4xx_dma2d.d -------------------------------------------------------------------------------- /Keil_Project/Objects/stm32f4xx_dma2d.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Keil_Project/Objects/stm32f4xx_dma2d.o -------------------------------------------------------------------------------- /Keil_Project/Objects/stm32f4xx_dsi.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Keil_Project/Objects/stm32f4xx_dsi.crf -------------------------------------------------------------------------------- /Keil_Project/Objects/stm32f4xx_dsi.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Keil_Project/Objects/stm32f4xx_dsi.d -------------------------------------------------------------------------------- /Keil_Project/Objects/stm32f4xx_dsi.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Keil_Project/Objects/stm32f4xx_dsi.o -------------------------------------------------------------------------------- /Keil_Project/Objects/stm32f4xx_exti.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Keil_Project/Objects/stm32f4xx_exti.crf -------------------------------------------------------------------------------- /Keil_Project/Objects/stm32f4xx_exti.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Keil_Project/Objects/stm32f4xx_exti.d -------------------------------------------------------------------------------- /Keil_Project/Objects/stm32f4xx_exti.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Keil_Project/Objects/stm32f4xx_exti.o -------------------------------------------------------------------------------- /Keil_Project/Objects/stm32f4xx_flash.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Keil_Project/Objects/stm32f4xx_flash.crf -------------------------------------------------------------------------------- /Keil_Project/Objects/stm32f4xx_flash.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Keil_Project/Objects/stm32f4xx_flash.d -------------------------------------------------------------------------------- /Keil_Project/Objects/stm32f4xx_flash.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Keil_Project/Objects/stm32f4xx_flash.o -------------------------------------------------------------------------------- /Keil_Project/Objects/stm32f4xx_flash_ramfunc.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Keil_Project/Objects/stm32f4xx_flash_ramfunc.crf -------------------------------------------------------------------------------- /Keil_Project/Objects/stm32f4xx_flash_ramfunc.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Keil_Project/Objects/stm32f4xx_flash_ramfunc.d -------------------------------------------------------------------------------- /Keil_Project/Objects/stm32f4xx_flash_ramfunc.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Keil_Project/Objects/stm32f4xx_flash_ramfunc.o -------------------------------------------------------------------------------- /Keil_Project/Objects/stm32f4xx_fmc.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Keil_Project/Objects/stm32f4xx_fmc.d -------------------------------------------------------------------------------- /Keil_Project/Objects/stm32f4xx_fmpi2c.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Keil_Project/Objects/stm32f4xx_fmpi2c.crf -------------------------------------------------------------------------------- /Keil_Project/Objects/stm32f4xx_fmpi2c.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Keil_Project/Objects/stm32f4xx_fmpi2c.d -------------------------------------------------------------------------------- /Keil_Project/Objects/stm32f4xx_fmpi2c.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Keil_Project/Objects/stm32f4xx_fmpi2c.o -------------------------------------------------------------------------------- /Keil_Project/Objects/stm32f4xx_fsmc.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Keil_Project/Objects/stm32f4xx_fsmc.crf -------------------------------------------------------------------------------- /Keil_Project/Objects/stm32f4xx_fsmc.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Keil_Project/Objects/stm32f4xx_fsmc.d -------------------------------------------------------------------------------- /Keil_Project/Objects/stm32f4xx_fsmc.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Keil_Project/Objects/stm32f4xx_fsmc.o -------------------------------------------------------------------------------- /Keil_Project/Objects/stm32f4xx_gpio.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Keil_Project/Objects/stm32f4xx_gpio.crf -------------------------------------------------------------------------------- /Keil_Project/Objects/stm32f4xx_gpio.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Keil_Project/Objects/stm32f4xx_gpio.d -------------------------------------------------------------------------------- /Keil_Project/Objects/stm32f4xx_gpio.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Keil_Project/Objects/stm32f4xx_gpio.o -------------------------------------------------------------------------------- /Keil_Project/Objects/stm32f4xx_hash.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Keil_Project/Objects/stm32f4xx_hash.crf -------------------------------------------------------------------------------- /Keil_Project/Objects/stm32f4xx_hash.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Keil_Project/Objects/stm32f4xx_hash.d -------------------------------------------------------------------------------- /Keil_Project/Objects/stm32f4xx_hash.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Keil_Project/Objects/stm32f4xx_hash.o -------------------------------------------------------------------------------- /Keil_Project/Objects/stm32f4xx_hash_md5.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Keil_Project/Objects/stm32f4xx_hash_md5.crf -------------------------------------------------------------------------------- /Keil_Project/Objects/stm32f4xx_hash_md5.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Keil_Project/Objects/stm32f4xx_hash_md5.d -------------------------------------------------------------------------------- /Keil_Project/Objects/stm32f4xx_hash_md5.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Keil_Project/Objects/stm32f4xx_hash_md5.o -------------------------------------------------------------------------------- /Keil_Project/Objects/stm32f4xx_hash_sha1.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Keil_Project/Objects/stm32f4xx_hash_sha1.crf -------------------------------------------------------------------------------- /Keil_Project/Objects/stm32f4xx_hash_sha1.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Keil_Project/Objects/stm32f4xx_hash_sha1.d -------------------------------------------------------------------------------- /Keil_Project/Objects/stm32f4xx_hash_sha1.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Keil_Project/Objects/stm32f4xx_hash_sha1.o -------------------------------------------------------------------------------- /Keil_Project/Objects/stm32f4xx_i2c.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Keil_Project/Objects/stm32f4xx_i2c.crf -------------------------------------------------------------------------------- /Keil_Project/Objects/stm32f4xx_i2c.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Keil_Project/Objects/stm32f4xx_i2c.d -------------------------------------------------------------------------------- /Keil_Project/Objects/stm32f4xx_i2c.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Keil_Project/Objects/stm32f4xx_i2c.o -------------------------------------------------------------------------------- /Keil_Project/Objects/stm32f4xx_iwdg.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Keil_Project/Objects/stm32f4xx_iwdg.crf -------------------------------------------------------------------------------- /Keil_Project/Objects/stm32f4xx_iwdg.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Keil_Project/Objects/stm32f4xx_iwdg.d -------------------------------------------------------------------------------- /Keil_Project/Objects/stm32f4xx_iwdg.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Keil_Project/Objects/stm32f4xx_iwdg.o -------------------------------------------------------------------------------- /Keil_Project/Objects/stm32f4xx_lptim.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Keil_Project/Objects/stm32f4xx_lptim.crf -------------------------------------------------------------------------------- /Keil_Project/Objects/stm32f4xx_lptim.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Keil_Project/Objects/stm32f4xx_lptim.d -------------------------------------------------------------------------------- /Keil_Project/Objects/stm32f4xx_lptim.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Keil_Project/Objects/stm32f4xx_lptim.o -------------------------------------------------------------------------------- /Keil_Project/Objects/stm32f4xx_ltdc.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Keil_Project/Objects/stm32f4xx_ltdc.crf -------------------------------------------------------------------------------- /Keil_Project/Objects/stm32f4xx_ltdc.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Keil_Project/Objects/stm32f4xx_ltdc.d -------------------------------------------------------------------------------- /Keil_Project/Objects/stm32f4xx_ltdc.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Keil_Project/Objects/stm32f4xx_ltdc.o -------------------------------------------------------------------------------- /Keil_Project/Objects/stm32f4xx_pwr.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Keil_Project/Objects/stm32f4xx_pwr.crf -------------------------------------------------------------------------------- /Keil_Project/Objects/stm32f4xx_pwr.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Keil_Project/Objects/stm32f4xx_pwr.d -------------------------------------------------------------------------------- /Keil_Project/Objects/stm32f4xx_pwr.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Keil_Project/Objects/stm32f4xx_pwr.o -------------------------------------------------------------------------------- /Keil_Project/Objects/stm32f4xx_qspi.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Keil_Project/Objects/stm32f4xx_qspi.crf -------------------------------------------------------------------------------- /Keil_Project/Objects/stm32f4xx_qspi.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Keil_Project/Objects/stm32f4xx_qspi.d -------------------------------------------------------------------------------- /Keil_Project/Objects/stm32f4xx_qspi.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Keil_Project/Objects/stm32f4xx_qspi.o -------------------------------------------------------------------------------- /Keil_Project/Objects/stm32f4xx_rcc.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Keil_Project/Objects/stm32f4xx_rcc.crf -------------------------------------------------------------------------------- /Keil_Project/Objects/stm32f4xx_rcc.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Keil_Project/Objects/stm32f4xx_rcc.d -------------------------------------------------------------------------------- /Keil_Project/Objects/stm32f4xx_rcc.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Keil_Project/Objects/stm32f4xx_rcc.o -------------------------------------------------------------------------------- /Keil_Project/Objects/stm32f4xx_rng.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Keil_Project/Objects/stm32f4xx_rng.crf -------------------------------------------------------------------------------- /Keil_Project/Objects/stm32f4xx_rng.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Keil_Project/Objects/stm32f4xx_rng.d -------------------------------------------------------------------------------- /Keil_Project/Objects/stm32f4xx_rng.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Keil_Project/Objects/stm32f4xx_rng.o -------------------------------------------------------------------------------- /Keil_Project/Objects/stm32f4xx_rtc.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Keil_Project/Objects/stm32f4xx_rtc.crf -------------------------------------------------------------------------------- /Keil_Project/Objects/stm32f4xx_rtc.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Keil_Project/Objects/stm32f4xx_rtc.d -------------------------------------------------------------------------------- /Keil_Project/Objects/stm32f4xx_rtc.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Keil_Project/Objects/stm32f4xx_rtc.o -------------------------------------------------------------------------------- /Keil_Project/Objects/stm32f4xx_sai.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Keil_Project/Objects/stm32f4xx_sai.crf -------------------------------------------------------------------------------- /Keil_Project/Objects/stm32f4xx_sai.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Keil_Project/Objects/stm32f4xx_sai.d -------------------------------------------------------------------------------- /Keil_Project/Objects/stm32f4xx_sai.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Keil_Project/Objects/stm32f4xx_sai.o -------------------------------------------------------------------------------- /Keil_Project/Objects/stm32f4xx_sdio.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Keil_Project/Objects/stm32f4xx_sdio.crf -------------------------------------------------------------------------------- /Keil_Project/Objects/stm32f4xx_sdio.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Keil_Project/Objects/stm32f4xx_sdio.d -------------------------------------------------------------------------------- /Keil_Project/Objects/stm32f4xx_sdio.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Keil_Project/Objects/stm32f4xx_sdio.o -------------------------------------------------------------------------------- /Keil_Project/Objects/stm32f4xx_spdifrx.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Keil_Project/Objects/stm32f4xx_spdifrx.crf -------------------------------------------------------------------------------- /Keil_Project/Objects/stm32f4xx_spdifrx.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Keil_Project/Objects/stm32f4xx_spdifrx.d -------------------------------------------------------------------------------- /Keil_Project/Objects/stm32f4xx_spdifrx.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Keil_Project/Objects/stm32f4xx_spdifrx.o -------------------------------------------------------------------------------- /Keil_Project/Objects/stm32f4xx_spi.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Keil_Project/Objects/stm32f4xx_spi.crf -------------------------------------------------------------------------------- /Keil_Project/Objects/stm32f4xx_spi.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Keil_Project/Objects/stm32f4xx_spi.d -------------------------------------------------------------------------------- /Keil_Project/Objects/stm32f4xx_spi.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Keil_Project/Objects/stm32f4xx_spi.o -------------------------------------------------------------------------------- /Keil_Project/Objects/stm32f4xx_syscfg.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Keil_Project/Objects/stm32f4xx_syscfg.crf -------------------------------------------------------------------------------- /Keil_Project/Objects/stm32f4xx_syscfg.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Keil_Project/Objects/stm32f4xx_syscfg.d -------------------------------------------------------------------------------- /Keil_Project/Objects/stm32f4xx_syscfg.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Keil_Project/Objects/stm32f4xx_syscfg.o -------------------------------------------------------------------------------- /Keil_Project/Objects/stm32f4xx_tim.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Keil_Project/Objects/stm32f4xx_tim.crf -------------------------------------------------------------------------------- /Keil_Project/Objects/stm32f4xx_tim.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Keil_Project/Objects/stm32f4xx_tim.d -------------------------------------------------------------------------------- /Keil_Project/Objects/stm32f4xx_tim.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Keil_Project/Objects/stm32f4xx_tim.o -------------------------------------------------------------------------------- /Keil_Project/Objects/stm32f4xx_usart.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Keil_Project/Objects/stm32f4xx_usart.crf -------------------------------------------------------------------------------- /Keil_Project/Objects/stm32f4xx_usart.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Keil_Project/Objects/stm32f4xx_usart.d -------------------------------------------------------------------------------- /Keil_Project/Objects/stm32f4xx_usart.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Keil_Project/Objects/stm32f4xx_usart.o -------------------------------------------------------------------------------- /Keil_Project/Objects/stm32f4xx_wwdg.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Keil_Project/Objects/stm32f4xx_wwdg.crf -------------------------------------------------------------------------------- /Keil_Project/Objects/stm32f4xx_wwdg.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Keil_Project/Objects/stm32f4xx_wwdg.d -------------------------------------------------------------------------------- /Keil_Project/Objects/stm32f4xx_wwdg.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Keil_Project/Objects/stm32f4xx_wwdg.o -------------------------------------------------------------------------------- /Keil_Project/Objects/system_stm32f4xx.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Keil_Project/Objects/system_stm32f4xx.crf -------------------------------------------------------------------------------- /Keil_Project/Objects/system_stm32f4xx.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Keil_Project/Objects/system_stm32f4xx.d -------------------------------------------------------------------------------- /Keil_Project/Objects/system_stm32f4xx.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Keil_Project/Objects/system_stm32f4xx.o -------------------------------------------------------------------------------- /Keil_Project/RTE/Device/STM32F407VGTx/startup_stm32f407xx.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Keil_Project/RTE/Device/STM32F407VGTx/startup_stm32f407xx.s -------------------------------------------------------------------------------- /Keil_Project/RTE/Device/STM32F407VGTx/system_stm32f4xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Keil_Project/RTE/Device/STM32F407VGTx/system_stm32f4xx.c -------------------------------------------------------------------------------- /Keil_Project/RTE/_Target_1/RTE_Components.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Keil_Project/RTE/_Target_1/RTE_Components.h -------------------------------------------------------------------------------- /Keil_Project/SPI_FOC.uvguix.В1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Keil_Project/SPI_FOC.uvguix.В1 -------------------------------------------------------------------------------- /Keil_Project/SPI_FOC.uvoptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Keil_Project/SPI_FOC.uvoptx -------------------------------------------------------------------------------- /Keil_Project/SPI_FOC.uvprojx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Keil_Project/SPI_FOC.uvprojx -------------------------------------------------------------------------------- /Keil_Project/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Keil_Project/main.c -------------------------------------------------------------------------------- /Keil_Project/tmstudio/1.tsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Keil_Project/tmstudio/1.tsc -------------------------------------------------------------------------------- /Keil_Project/tmstudio/1.tsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Keil_Project/tmstudio/1.tsp -------------------------------------------------------------------------------- /Motor_PCB_V2/History/Motor_PCB.~(1).PrjPcb.Zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/Motor_PCB_V2/History/Motor_PCB.~(7).PrjPcb.Zip -------------------------------------------------------------------------------- /Motor_PCB_V2/History/PCB1.~(1).PcbDoc.Zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Motor_PCB_V2/History/PCB1.~(1).PcbDoc.Zip -------------------------------------------------------------------------------- /Motor_PCB_V2/History/PCB1.~(11).PcbDoc.Zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Motor_PCB_V2/History/PCB1.~(11).PcbDoc.Zip -------------------------------------------------------------------------------- /Motor_PCB_V2/History/PCB1.~(12).PcbDoc.Zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Motor_PCB_V2/History/PCB1.~(12).PcbDoc.Zip -------------------------------------------------------------------------------- /Motor_PCB_V2/History/PCB1.~(13).PcbDoc.Zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Motor_PCB_V2/History/PCB1.~(13).PcbDoc.Zip -------------------------------------------------------------------------------- /Motor_PCB_V2/History/PCB1.~(14).PcbDoc.Zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Motor_PCB_V2/History/PCB1.~(14).PcbDoc.Zip -------------------------------------------------------------------------------- /Motor_PCB_V2/History/PCB1.~(15).PcbDoc.Zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Motor_PCB_V2/History/PCB1.~(15).PcbDoc.Zip -------------------------------------------------------------------------------- /Motor_PCB_V2/History/PCB1.~(16).PcbDoc.Zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Motor_PCB_V2/History/PCB1.~(16).PcbDoc.Zip -------------------------------------------------------------------------------- /Motor_PCB_V2/History/PCB1.~(17).PcbDoc.Zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Motor_PCB_V2/History/PCB1.~(17).PcbDoc.Zip -------------------------------------------------------------------------------- /Motor_PCB_V2/History/PCB1.~(18).PcbDoc.Zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Motor_PCB_V2/History/PCB1.~(18).PcbDoc.Zip -------------------------------------------------------------------------------- /Motor_PCB_V2/History/PCB1.~(19).PcbDoc.Zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Motor_PCB_V2/History/PCB1.~(19).PcbDoc.Zip -------------------------------------------------------------------------------- /Motor_PCB_V2/History/PCB1.~(2).PcbDoc.Zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Motor_PCB_V2/History/PCB1.~(2).PcbDoc.Zip -------------------------------------------------------------------------------- /Motor_PCB_V2/History/PCB1.~(20).PcbDoc.Zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Motor_PCB_V2/History/PCB1.~(20).PcbDoc.Zip -------------------------------------------------------------------------------- /Motor_PCB_V2/History/PCB1.~(21).PcbDoc.Zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Motor_PCB_V2/History/PCB1.~(21).PcbDoc.Zip -------------------------------------------------------------------------------- /Motor_PCB_V2/History/PCB1.~(22).PcbDoc.Zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Motor_PCB_V2/History/PCB1.~(22).PcbDoc.Zip -------------------------------------------------------------------------------- /Motor_PCB_V2/History/PCB1.~(23).PcbDoc.Zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Motor_PCB_V2/History/PCB1.~(23).PcbDoc.Zip -------------------------------------------------------------------------------- /Motor_PCB_V2/History/PCB1.~(24).PcbDoc.Zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Motor_PCB_V2/History/PCB1.~(24).PcbDoc.Zip -------------------------------------------------------------------------------- /Motor_PCB_V2/History/PCB1.~(25).PcbDoc.Zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Motor_PCB_V2/History/PCB1.~(25).PcbDoc.Zip -------------------------------------------------------------------------------- /Motor_PCB_V2/History/PCB1.~(26).PcbDoc.Zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Motor_PCB_V2/History/PCB1.~(26).PcbDoc.Zip -------------------------------------------------------------------------------- /Motor_PCB_V2/History/PCB1.~(27).PcbDoc.Zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Motor_PCB_V2/History/PCB1.~(27).PcbDoc.Zip -------------------------------------------------------------------------------- /Motor_PCB_V2/History/PCB1.~(28).PcbDoc.Zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Motor_PCB_V2/History/PCB1.~(28).PcbDoc.Zip -------------------------------------------------------------------------------- /Motor_PCB_V2/History/PCB1.~(29).PcbDoc.Zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Motor_PCB_V2/History/PCB1.~(29).PcbDoc.Zip -------------------------------------------------------------------------------- /Motor_PCB_V2/History/PCB1.~(3).PcbDoc.Zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Motor_PCB_V2/History/PCB1.~(3).PcbDoc.Zip -------------------------------------------------------------------------------- /Motor_PCB_V2/History/PCB1.~(30).PcbDoc.Zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Motor_PCB_V2/History/PCB1.~(30).PcbDoc.Zip -------------------------------------------------------------------------------- /Motor_PCB_V2/History/PCB1.~(31).PcbDoc.Zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Motor_PCB_V2/History/PCB1.~(31).PcbDoc.Zip -------------------------------------------------------------------------------- /Motor_PCB_V2/History/PCB1.~(32).PcbDoc.Zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Motor_PCB_V2/History/PCB1.~(32).PcbDoc.Zip -------------------------------------------------------------------------------- /Motor_PCB_V2/History/PCB1.~(33).PcbDoc.Zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Motor_PCB_V2/History/PCB1.~(33).PcbDoc.Zip -------------------------------------------------------------------------------- /Motor_PCB_V2/History/PCB1.~(34).PcbDoc.Zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Motor_PCB_V2/History/PCB1.~(34).PcbDoc.Zip -------------------------------------------------------------------------------- /Motor_PCB_V2/History/PCB1.~(35).PcbDoc.Zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Motor_PCB_V2/History/PCB1.~(35).PcbDoc.Zip -------------------------------------------------------------------------------- /Motor_PCB_V2/History/PCB1.~(36).PcbDoc.Zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Motor_PCB_V2/History/PCB1.~(36).PcbDoc.Zip -------------------------------------------------------------------------------- /Motor_PCB_V2/History/PCB1.~(37).PcbDoc.Zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Motor_PCB_V2/History/PCB1.~(37).PcbDoc.Zip -------------------------------------------------------------------------------- /Motor_PCB_V2/History/PCB1.~(38).PcbDoc.Zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Motor_PCB_V2/History/PCB1.~(38).PcbDoc.Zip -------------------------------------------------------------------------------- /Motor_PCB_V2/History/PCB1.~(39).PcbDoc.Zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Motor_PCB_V2/History/PCB1.~(39).PcbDoc.Zip -------------------------------------------------------------------------------- /Motor_PCB_V2/History/PCB1.~(4).PcbDoc.Zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Motor_PCB_V2/History/PCB1.~(4).PcbDoc.Zip -------------------------------------------------------------------------------- /Motor_PCB_V2/History/PCB1.~(40).PcbDoc.Zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Motor_PCB_V2/History/PCB1.~(40).PcbDoc.Zip -------------------------------------------------------------------------------- /Motor_PCB_V2/History/PCB1.~(41).PcbDoc.Zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Motor_PCB_V2/History/PCB1.~(41).PcbDoc.Zip -------------------------------------------------------------------------------- /Motor_PCB_V2/History/PCB1.~(42).PcbDoc.Zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Motor_PCB_V2/History/PCB1.~(42).PcbDoc.Zip -------------------------------------------------------------------------------- /Motor_PCB_V2/History/PCB1.~(43).PcbDoc.Zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Motor_PCB_V2/History/PCB1.~(43).PcbDoc.Zip -------------------------------------------------------------------------------- /Motor_PCB_V2/History/PCB1.~(44).PcbDoc.Zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Motor_PCB_V2/History/PCB1.~(44).PcbDoc.Zip -------------------------------------------------------------------------------- /Motor_PCB_V2/History/PCB1.~(45).PcbDoc.Zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Motor_PCB_V2/History/PCB1.~(45).PcbDoc.Zip -------------------------------------------------------------------------------- /Motor_PCB_V2/History/PCB1.~(46).PcbDoc.Zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Motor_PCB_V2/History/PCB1.~(46).PcbDoc.Zip -------------------------------------------------------------------------------- /Motor_PCB_V2/History/PCB1.~(47).PcbDoc.Zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Motor_PCB_V2/History/PCB1.~(47).PcbDoc.Zip -------------------------------------------------------------------------------- /Motor_PCB_V2/History/PCB1.~(48).PcbDoc.Zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Motor_PCB_V2/History/PCB1.~(48).PcbDoc.Zip -------------------------------------------------------------------------------- /Motor_PCB_V2/History/PCB1.~(49).PcbDoc.Zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Motor_PCB_V2/History/PCB1.~(49).PcbDoc.Zip -------------------------------------------------------------------------------- /Motor_PCB_V2/History/PCB1.~(5).PcbDoc.Zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Motor_PCB_V2/History/PCB1.~(5).PcbDoc.Zip -------------------------------------------------------------------------------- /Motor_PCB_V2/History/PCB1.~(50).PcbDoc.Zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Motor_PCB_V2/History/PCB1.~(50).PcbDoc.Zip -------------------------------------------------------------------------------- /Motor_PCB_V2/History/PCB1.~(51).PcbDoc.Zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Motor_PCB_V2/History/PCB1.~(51).PcbDoc.Zip -------------------------------------------------------------------------------- /Motor_PCB_V2/History/PCB1.~(52).PcbDoc.Zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Motor_PCB_V2/History/PCB1.~(52).PcbDoc.Zip -------------------------------------------------------------------------------- /Motor_PCB_V2/History/PCB1.~(53).PcbDoc.Zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Motor_PCB_V2/History/PCB1.~(53).PcbDoc.Zip -------------------------------------------------------------------------------- /Motor_PCB_V2/History/PCB1.~(54).PcbDoc.Zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Motor_PCB_V2/History/PCB1.~(54).PcbDoc.Zip -------------------------------------------------------------------------------- /Motor_PCB_V2/History/PCB1.~(55).PcbDoc.Zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Motor_PCB_V2/History/PCB1.~(55).PcbDoc.Zip -------------------------------------------------------------------------------- /Motor_PCB_V2/History/PCB1.~(56).PcbDoc.Zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Motor_PCB_V2/History/PCB1.~(56).PcbDoc.Zip -------------------------------------------------------------------------------- /Motor_PCB_V2/History/PCB1.~(57).PcbDoc.Zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Motor_PCB_V2/History/PCB1.~(57).PcbDoc.Zip -------------------------------------------------------------------------------- /Motor_PCB_V2/History/PCB1.~(58).PcbDoc.Zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Motor_PCB_V2/History/PCB1.~(58).PcbDoc.Zip -------------------------------------------------------------------------------- /Motor_PCB_V2/History/PCB1.~(59).PcbDoc.Zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Motor_PCB_V2/History/PCB1.~(59).PcbDoc.Zip -------------------------------------------------------------------------------- /Motor_PCB_V2/History/PCB1.~(6).PcbDoc.Zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Motor_PCB_V2/History/PCB1.~(6).PcbDoc.Zip -------------------------------------------------------------------------------- /Motor_PCB_V2/History/PCB1.~(60).PcbDoc.Zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Motor_PCB_V2/History/PCB1.~(60).PcbDoc.Zip -------------------------------------------------------------------------------- /Motor_PCB_V2/History/PCB1.~(61).PcbDoc.Zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Motor_PCB_V2/History/PCB1.~(61).PcbDoc.Zip -------------------------------------------------------------------------------- /Motor_PCB_V2/History/PCB1.~(62).PcbDoc.Zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Motor_PCB_V2/History/PCB1.~(62).PcbDoc.Zip -------------------------------------------------------------------------------- /Motor_PCB_V2/History/PCB1.~(63).PcbDoc.Zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Motor_PCB_V2/History/PCB1.~(63).PcbDoc.Zip -------------------------------------------------------------------------------- /Motor_PCB_V2/History/PCB1.~(64).PcbDoc.Zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Motor_PCB_V2/History/PCB1.~(64).PcbDoc.Zip -------------------------------------------------------------------------------- /Motor_PCB_V2/History/PCB1.~(7).PcbDoc.Zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Motor_PCB_V2/History/PCB1.~(7).PcbDoc.Zip -------------------------------------------------------------------------------- /Motor_PCB_V2/History/PCB1.~(8).PcbDoc.Zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Motor_PCB_V2/History/PCB1.~(8).PcbDoc.Zip -------------------------------------------------------------------------------- /Motor_PCB_V2/History/PCB1.~(9).PcbDoc.Zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Motor_PCB_V2/History/PCB1.~(9).PcbDoc.Zip -------------------------------------------------------------------------------- /Motor_PCB_V2/History/PcbLib1.~(1).PcbLib.Zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Motor_PCB_V2/History/PcbLib1.~(1).PcbLib.Zip -------------------------------------------------------------------------------- /Motor_PCB_V2/History/PcbLib1.~(10).PcbLib.Zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Motor_PCB_V2/History/PcbLib1.~(10).PcbLib.Zip -------------------------------------------------------------------------------- /Motor_PCB_V2/History/PcbLib1.~(11).PcbLib.Zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Motor_PCB_V2/History/PcbLib1.~(11).PcbLib.Zip -------------------------------------------------------------------------------- /Motor_PCB_V2/History/PcbLib1.~(12).PcbLib.Zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Motor_PCB_V2/History/PcbLib1.~(12).PcbLib.Zip -------------------------------------------------------------------------------- /Motor_PCB_V2/History/PcbLib1.~(13).PcbLib.Zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Motor_PCB_V2/History/PcbLib1.~(13).PcbLib.Zip -------------------------------------------------------------------------------- /Motor_PCB_V2/History/PcbLib1.~(2).PcbLib.Zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Motor_PCB_V2/History/PcbLib1.~(2).PcbLib.Zip -------------------------------------------------------------------------------- /Motor_PCB_V2/History/PcbLib1.~(3).PcbLib.Zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Motor_PCB_V2/History/PcbLib1.~(3).PcbLib.Zip -------------------------------------------------------------------------------- /Motor_PCB_V2/History/PcbLib1.~(4).PcbLib.Zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Motor_PCB_V2/History/PcbLib1.~(4).PcbLib.Zip -------------------------------------------------------------------------------- /Motor_PCB_V2/History/PcbLib1.~(5).PcbLib.Zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Motor_PCB_V2/History/PcbLib1.~(5).PcbLib.Zip -------------------------------------------------------------------------------- /Motor_PCB_V2/History/PcbLib1.~(6).PcbLib.Zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Motor_PCB_V2/History/PcbLib1.~(6).PcbLib.Zip -------------------------------------------------------------------------------- /Motor_PCB_V2/History/PcbLib1.~(7).PcbLib.Zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Motor_PCB_V2/History/PcbLib1.~(7).PcbLib.Zip -------------------------------------------------------------------------------- /Motor_PCB_V2/History/PcbLib1.~(8).PcbLib.Zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Motor_PCB_V2/History/PcbLib1.~(8).PcbLib.Zip -------------------------------------------------------------------------------- /Motor_PCB_V2/History/PcbLib1.~(9).PcbLib.Zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Motor_PCB_V2/History/PcbLib1.~(9).PcbLib.Zip -------------------------------------------------------------------------------- /Motor_PCB_V2/History/Schlib1.~(1).SchLib.Zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Motor_PCB_V2/History/Schlib1.~(1).SchLib.Zip -------------------------------------------------------------------------------- /Motor_PCB_V2/History/Schlib1.~(10).SchLib.Zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Motor_PCB_V2/History/Schlib1.~(10).SchLib.Zip -------------------------------------------------------------------------------- /Motor_PCB_V2/History/Schlib1.~(11).SchLib.Zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Motor_PCB_V2/History/Schlib1.~(11).SchLib.Zip -------------------------------------------------------------------------------- /Motor_PCB_V2/History/Schlib1.~(12).SchLib.Zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Motor_PCB_V2/History/Schlib1.~(12).SchLib.Zip -------------------------------------------------------------------------------- /Motor_PCB_V2/History/Schlib1.~(13).SchLib.Zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Motor_PCB_V2/History/Schlib1.~(13).SchLib.Zip -------------------------------------------------------------------------------- /Motor_PCB_V2/History/Schlib1.~(14).SchLib.Zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Motor_PCB_V2/History/Schlib1.~(14).SchLib.Zip -------------------------------------------------------------------------------- /Motor_PCB_V2/History/Schlib1.~(15).SchLib.Zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Motor_PCB_V2/History/Schlib1.~(15).SchLib.Zip -------------------------------------------------------------------------------- /Motor_PCB_V2/History/Schlib1.~(16).SchLib.Zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Motor_PCB_V2/History/Schlib1.~(16).SchLib.Zip -------------------------------------------------------------------------------- /Motor_PCB_V2/History/Schlib1.~(17).SchLib.Zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Motor_PCB_V2/History/Schlib1.~(17).SchLib.Zip -------------------------------------------------------------------------------- /Motor_PCB_V2/History/Schlib1.~(18).SchLib.Zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Motor_PCB_V2/History/Schlib1.~(18).SchLib.Zip -------------------------------------------------------------------------------- /Motor_PCB_V2/History/Schlib1.~(19).SchLib.Zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Motor_PCB_V2/History/Schlib1.~(19).SchLib.Zip -------------------------------------------------------------------------------- /Motor_PCB_V2/History/Schlib1.~(2).SchLib.Zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Motor_PCB_V2/History/Schlib1.~(2).SchLib.Zip -------------------------------------------------------------------------------- /Motor_PCB_V2/History/Schlib1.~(20).SchLib.Zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Motor_PCB_V2/History/Schlib1.~(20).SchLib.Zip -------------------------------------------------------------------------------- /Motor_PCB_V2/History/Schlib1.~(21).SchLib.Zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Motor_PCB_V2/History/Schlib1.~(21).SchLib.Zip -------------------------------------------------------------------------------- /Motor_PCB_V2/History/Schlib1.~(22).SchLib.Zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Motor_PCB_V2/History/Schlib1.~(22).SchLib.Zip -------------------------------------------------------------------------------- /Motor_PCB_V2/History/Schlib1.~(23).SchLib.Zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Motor_PCB_V2/History/Schlib1.~(23).SchLib.Zip -------------------------------------------------------------------------------- /Motor_PCB_V2/History/Schlib1.~(24).SchLib.Zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Motor_PCB_V2/History/Schlib1.~(24).SchLib.Zip -------------------------------------------------------------------------------- /Motor_PCB_V2/History/Schlib1.~(25).SchLib.Zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Motor_PCB_V2/History/Schlib1.~(25).SchLib.Zip -------------------------------------------------------------------------------- /Motor_PCB_V2/History/Schlib1.~(26).SchLib.Zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Motor_PCB_V2/History/Schlib1.~(26).SchLib.Zip -------------------------------------------------------------------------------- /Motor_PCB_V2/History/Schlib1.~(27).SchLib.Zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Motor_PCB_V2/History/Schlib1.~(27).SchLib.Zip -------------------------------------------------------------------------------- /Motor_PCB_V2/History/Schlib1.~(28).SchLib.Zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Motor_PCB_V2/History/Schlib1.~(28).SchLib.Zip -------------------------------------------------------------------------------- /Motor_PCB_V2/History/Schlib1.~(29).SchLib.Zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Motor_PCB_V2/History/Schlib1.~(29).SchLib.Zip -------------------------------------------------------------------------------- /Motor_PCB_V2/History/Schlib1.~(3).SchLib.Zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Motor_PCB_V2/History/Schlib1.~(3).SchLib.Zip -------------------------------------------------------------------------------- /Motor_PCB_V2/History/Schlib1.~(30).SchLib.Zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Motor_PCB_V2/History/Schlib1.~(30).SchLib.Zip -------------------------------------------------------------------------------- /Motor_PCB_V2/History/Schlib1.~(31).SchLib.Zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Motor_PCB_V2/History/Schlib1.~(31).SchLib.Zip -------------------------------------------------------------------------------- /Motor_PCB_V2/History/Schlib1.~(32).SchLib.Zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Motor_PCB_V2/History/Schlib1.~(32).SchLib.Zip -------------------------------------------------------------------------------- /Motor_PCB_V2/History/Schlib1.~(33).SchLib.Zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Motor_PCB_V2/History/Schlib1.~(33).SchLib.Zip -------------------------------------------------------------------------------- /Motor_PCB_V2/History/Schlib1.~(4).SchLib.Zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Motor_PCB_V2/History/Schlib1.~(4).SchLib.Zip -------------------------------------------------------------------------------- /Motor_PCB_V2/History/Schlib1.~(5).SchLib.Zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Motor_PCB_V2/History/Schlib1.~(5).SchLib.Zip -------------------------------------------------------------------------------- /Motor_PCB_V2/History/Schlib1.~(6).SchLib.Zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Motor_PCB_V2/History/Schlib1.~(6).SchLib.Zip -------------------------------------------------------------------------------- /Motor_PCB_V2/History/Schlib1.~(7).SchLib.Zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Motor_PCB_V2/History/Schlib1.~(7).SchLib.Zip -------------------------------------------------------------------------------- /Motor_PCB_V2/History/Schlib1.~(8).SchLib.Zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Motor_PCB_V2/History/Schlib1.~(8).SchLib.Zip -------------------------------------------------------------------------------- /Motor_PCB_V2/History/Schlib1.~(9).SchLib.Zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Motor_PCB_V2/History/Schlib1.~(9).SchLib.Zip -------------------------------------------------------------------------------- /Motor_PCB_V2/History/Sheet1.~(1).SchDoc.Zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Motor_PCB_V2/History/Sheet1.~(1).SchDoc.Zip -------------------------------------------------------------------------------- /Motor_PCB_V2/History/Sheet1.~(10).SchDoc.Zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Motor_PCB_V2/History/Sheet1.~(10).SchDoc.Zip -------------------------------------------------------------------------------- /Motor_PCB_V2/History/Sheet1.~(11).SchDoc.Zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Motor_PCB_V2/History/Sheet1.~(11).SchDoc.Zip -------------------------------------------------------------------------------- /Motor_PCB_V2/History/Sheet1.~(12).SchDoc.Zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Motor_PCB_V2/History/Sheet1.~(12).SchDoc.Zip -------------------------------------------------------------------------------- /Motor_PCB_V2/History/Sheet1.~(13).SchDoc.Zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Motor_PCB_V2/History/Sheet1.~(13).SchDoc.Zip -------------------------------------------------------------------------------- /Motor_PCB_V2/History/Sheet1.~(14).SchDoc.Zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Motor_PCB_V2/History/Sheet1.~(14).SchDoc.Zip -------------------------------------------------------------------------------- /Motor_PCB_V2/History/Sheet1.~(15).SchDoc.Zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Motor_PCB_V2/History/Sheet1.~(15).SchDoc.Zip -------------------------------------------------------------------------------- /Motor_PCB_V2/History/Sheet1.~(16).SchDoc.Zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Motor_PCB_V2/History/Sheet1.~(16).SchDoc.Zip -------------------------------------------------------------------------------- /Motor_PCB_V2/History/Sheet1.~(17).SchDoc.Zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Motor_PCB_V2/History/Sheet1.~(17).SchDoc.Zip -------------------------------------------------------------------------------- /Motor_PCB_V2/History/Sheet1.~(18).SchDoc.Zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Motor_PCB_V2/History/Sheet1.~(18).SchDoc.Zip -------------------------------------------------------------------------------- /Motor_PCB_V2/History/Sheet1.~(19).SchDoc.Zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Motor_PCB_V2/History/Sheet1.~(19).SchDoc.Zip -------------------------------------------------------------------------------- /Motor_PCB_V2/History/Sheet1.~(20).SchDoc.Zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Motor_PCB_V2/History/Sheet1.~(20).SchDoc.Zip -------------------------------------------------------------------------------- /Motor_PCB_V2/History/Sheet1.~(21).SchDoc.Zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Motor_PCB_V2/History/Sheet1.~(21).SchDoc.Zip -------------------------------------------------------------------------------- /Motor_PCB_V2/History/Sheet1.~(22).SchDoc.Zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Motor_PCB_V2/History/Sheet1.~(22).SchDoc.Zip -------------------------------------------------------------------------------- /Motor_PCB_V2/History/Sheet1.~(23).SchDoc.Zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Motor_PCB_V2/History/Sheet1.~(23).SchDoc.Zip -------------------------------------------------------------------------------- /Motor_PCB_V2/History/Sheet1.~(24).SchDoc.Zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Motor_PCB_V2/History/Sheet1.~(24).SchDoc.Zip -------------------------------------------------------------------------------- /Motor_PCB_V2/History/Sheet1.~(25).SchDoc.Zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Motor_PCB_V2/History/Sheet1.~(25).SchDoc.Zip -------------------------------------------------------------------------------- /Motor_PCB_V2/History/Sheet1.~(26).SchDoc.Zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Motor_PCB_V2/History/Sheet1.~(26).SchDoc.Zip -------------------------------------------------------------------------------- /Motor_PCB_V2/History/Sheet1.~(27).SchDoc.Zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Motor_PCB_V2/History/Sheet1.~(27).SchDoc.Zip -------------------------------------------------------------------------------- /Motor_PCB_V2/History/Sheet1.~(28).SchDoc.Zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Motor_PCB_V2/History/Sheet1.~(28).SchDoc.Zip -------------------------------------------------------------------------------- /Motor_PCB_V2/History/Sheet1.~(29).SchDoc.Zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Motor_PCB_V2/History/Sheet1.~(29).SchDoc.Zip -------------------------------------------------------------------------------- /Motor_PCB_V2/History/Sheet1.~(3).SchDoc.Zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Motor_PCB_V2/History/Sheet1.~(3).SchDoc.Zip -------------------------------------------------------------------------------- /Motor_PCB_V2/History/Sheet1.~(30).SchDoc.Zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Motor_PCB_V2/History/Sheet1.~(30).SchDoc.Zip -------------------------------------------------------------------------------- /Motor_PCB_V2/History/Sheet1.~(31).SchDoc.Zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Motor_PCB_V2/History/Sheet1.~(31).SchDoc.Zip -------------------------------------------------------------------------------- /Motor_PCB_V2/History/Sheet1.~(32).SchDoc.Zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Motor_PCB_V2/History/Sheet1.~(32).SchDoc.Zip -------------------------------------------------------------------------------- /Motor_PCB_V2/History/Sheet1.~(33).SchDoc.Zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Motor_PCB_V2/History/Sheet1.~(33).SchDoc.Zip -------------------------------------------------------------------------------- /Motor_PCB_V2/History/Sheet1.~(34).SchDoc.Zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Motor_PCB_V2/History/Sheet1.~(34).SchDoc.Zip -------------------------------------------------------------------------------- /Motor_PCB_V2/History/Sheet1.~(35).SchDoc.Zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Motor_PCB_V2/History/Sheet1.~(35).SchDoc.Zip -------------------------------------------------------------------------------- /Motor_PCB_V2/History/Sheet1.~(36).SchDoc.Zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Motor_PCB_V2/History/Sheet1.~(36).SchDoc.Zip -------------------------------------------------------------------------------- /Motor_PCB_V2/History/Sheet1.~(37).SchDoc.Zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Motor_PCB_V2/History/Sheet1.~(37).SchDoc.Zip -------------------------------------------------------------------------------- /Motor_PCB_V2/History/Sheet1.~(38).SchDoc.Zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Motor_PCB_V2/History/Sheet1.~(38).SchDoc.Zip -------------------------------------------------------------------------------- /Motor_PCB_V2/History/Sheet1.~(39).SchDoc.Zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Motor_PCB_V2/History/Sheet1.~(39).SchDoc.Zip -------------------------------------------------------------------------------- /Motor_PCB_V2/History/Sheet1.~(4).SchDoc.Zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Motor_PCB_V2/History/Sheet1.~(4).SchDoc.Zip -------------------------------------------------------------------------------- /Motor_PCB_V2/History/Sheet1.~(40).SchDoc.Zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Motor_PCB_V2/History/Sheet1.~(40).SchDoc.Zip -------------------------------------------------------------------------------- /Motor_PCB_V2/History/Sheet1.~(41).SchDoc.Zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Motor_PCB_V2/History/Sheet1.~(41).SchDoc.Zip -------------------------------------------------------------------------------- /Motor_PCB_V2/History/Sheet1.~(42).SchDoc.Zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Motor_PCB_V2/History/Sheet1.~(42).SchDoc.Zip -------------------------------------------------------------------------------- /Motor_PCB_V2/History/Sheet1.~(43).SchDoc.Zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Motor_PCB_V2/History/Sheet1.~(43).SchDoc.Zip -------------------------------------------------------------------------------- /Motor_PCB_V2/History/Sheet1.~(44).SchDoc.Zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Motor_PCB_V2/History/Sheet1.~(44).SchDoc.Zip -------------------------------------------------------------------------------- /Motor_PCB_V2/History/Sheet1.~(45).SchDoc.Zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Motor_PCB_V2/History/Sheet1.~(45).SchDoc.Zip -------------------------------------------------------------------------------- /Motor_PCB_V2/History/Sheet1.~(46).SchDoc.Zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Motor_PCB_V2/History/Sheet1.~(46).SchDoc.Zip -------------------------------------------------------------------------------- /Motor_PCB_V2/History/Sheet1.~(47).SchDoc.Zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Motor_PCB_V2/History/Sheet1.~(47).SchDoc.Zip -------------------------------------------------------------------------------- /Motor_PCB_V2/History/Sheet1.~(48).SchDoc.Zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Motor_PCB_V2/History/Sheet1.~(48).SchDoc.Zip -------------------------------------------------------------------------------- /Motor_PCB_V2/History/Sheet1.~(49).SchDoc.Zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Motor_PCB_V2/History/Sheet1.~(49).SchDoc.Zip -------------------------------------------------------------------------------- /Motor_PCB_V2/History/Sheet1.~(5).SchDoc.Zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Motor_PCB_V2/History/Sheet1.~(5).SchDoc.Zip -------------------------------------------------------------------------------- /Motor_PCB_V2/History/Sheet1.~(50).SchDoc.Zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Motor_PCB_V2/History/Sheet1.~(50).SchDoc.Zip -------------------------------------------------------------------------------- /Motor_PCB_V2/History/Sheet1.~(51).SchDoc.Zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Motor_PCB_V2/History/Sheet1.~(51).SchDoc.Zip -------------------------------------------------------------------------------- /Motor_PCB_V2/History/Sheet1.~(52).SchDoc.Zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Motor_PCB_V2/History/Sheet1.~(52).SchDoc.Zip -------------------------------------------------------------------------------- /Motor_PCB_V2/History/Sheet1.~(53).SchDoc.Zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Motor_PCB_V2/History/Sheet1.~(53).SchDoc.Zip -------------------------------------------------------------------------------- /Motor_PCB_V2/History/Sheet1.~(54).SchDoc.Zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Motor_PCB_V2/History/Sheet1.~(54).SchDoc.Zip -------------------------------------------------------------------------------- /Motor_PCB_V2/History/Sheet1.~(55).SchDoc.Zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Motor_PCB_V2/History/Sheet1.~(55).SchDoc.Zip -------------------------------------------------------------------------------- /Motor_PCB_V2/History/Sheet1.~(56).SchDoc.Zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Motor_PCB_V2/History/Sheet1.~(56).SchDoc.Zip -------------------------------------------------------------------------------- /Motor_PCB_V2/History/Sheet1.~(57).SchDoc.Zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Motor_PCB_V2/History/Sheet1.~(57).SchDoc.Zip -------------------------------------------------------------------------------- /Motor_PCB_V2/History/Sheet1.~(58).SchDoc.Zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Motor_PCB_V2/History/Sheet1.~(58).SchDoc.Zip -------------------------------------------------------------------------------- /Motor_PCB_V2/History/Sheet1.~(59).SchDoc.Zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Motor_PCB_V2/History/Sheet1.~(59).SchDoc.Zip -------------------------------------------------------------------------------- /Motor_PCB_V2/History/Sheet1.~(6).SchDoc.Zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Motor_PCB_V2/History/Sheet1.~(6).SchDoc.Zip -------------------------------------------------------------------------------- /Motor_PCB_V2/History/Sheet1.~(7).SchDoc.Zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Motor_PCB_V2/History/Sheet1.~(7).SchDoc.Zip -------------------------------------------------------------------------------- /Motor_PCB_V2/History/Sheet1.~(8).SchDoc.Zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Motor_PCB_V2/History/Sheet1.~(8).SchDoc.Zip -------------------------------------------------------------------------------- /Motor_PCB_V2/History/Sheet1.~(9).SchDoc.Zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Motor_PCB_V2/History/Sheet1.~(9).SchDoc.Zip -------------------------------------------------------------------------------- /Motor_PCB_V2/Job1.OutJob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Motor_PCB_V2/Job1.OutJob -------------------------------------------------------------------------------- /Motor_PCB_V2/Motor_PCB.PrjPcb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/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/HEAD/Motor_PCB_V2/PCB1.PcbDoc -------------------------------------------------------------------------------- /Motor_PCB_V2/PcbLib1.PcbLib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Motor_PCB_V2/PcbLib1.PcbLib -------------------------------------------------------------------------------- /Motor_PCB_V2/Project Logs for Motor_PCB/PCB1 PCB ECO 11.02.2018 16-02-50.LOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Motor_PCB_V2/Project Logs for Motor_PCB/PCB1 PCB ECO 11.02.2018 16-02-50.LOG -------------------------------------------------------------------------------- /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/HEAD/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: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Motor_PCB_V2/Project Logs for Motor_PCB/PCB1 PCB ECO 11.02.2018 16-18-26.LOG: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Motor_PCB_V2/Project Logs for Motor_PCB/PCB1 PCB ECO 11.02.2018 16-19-14.LOG: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /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/HEAD/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: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /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/HEAD/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/HEAD/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: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Motor_PCB_V2/Project Logs for Motor_PCB/PCB1 PCB ECO 11.02.2018 18-49-05.LOG -------------------------------------------------------------------------------- /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: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Motor_PCB_V2/Project Logs for Motor_PCB/PCB1 PCB ECO 11.02.2018 18-55-04.LOG -------------------------------------------------------------------------------- /Motor_PCB_V2/Project Logs for Motor_PCB/PCB1 PCB ECO 11.02.2018 19-00-00.LOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Motor_PCB_V2/Project Logs for Motor_PCB/PCB1 PCB ECO 11.02.2018 19-00-00.LOG -------------------------------------------------------------------------------- /Motor_PCB_V2/Project Logs for Motor_PCB/PCB1 PCB ECO 11.02.2018 19-17-21.LOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Motor_PCB_V2/Project Logs for Motor_PCB/PCB1 PCB ECO 11.02.2018 19-17-21.LOG -------------------------------------------------------------------------------- /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/HEAD/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/HEAD/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/HEAD/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: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Motor_PCB_V2/Project Logs for Motor_PCB/Sheet1 SCH ECO 11.02.2018 14-37-27.LOG -------------------------------------------------------------------------------- /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/HEAD/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/HEAD/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/HEAD/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: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Motor_PCB_V2/Project Logs for Motor_PCB/Sheet1 SCH ECO 11.02.2018 15-42-45.LOG -------------------------------------------------------------------------------- /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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/Motor_PCB_V2/Schlib1.SchLib -------------------------------------------------------------------------------- /Motor_PCB_V2/Sheet1.SchDoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Motor_PCB_V2/Sheet1.SchDoc -------------------------------------------------------------------------------- /Motor_PCB_V2/__Previews/PCB1.PcbDocPreview: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Motor_PCB_V2/__Previews/PCB1.PcbDocPreview -------------------------------------------------------------------------------- /Motor_PCB_V2/__Previews/Sheet1.SchDocPreview: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Motor_PCB_V2/__Previews/Sheet1.SchDocPreview -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/README.md -------------------------------------------------------------------------------- /graph/El.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/graph/El.JPG -------------------------------------------------------------------------------- /graph/Structure.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/graph/Structure.JPG -------------------------------------------------------------------------------- /Новый текстовый документ.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Сравнение методов управления двигателями FOC | Simlified FOC | Sinusoidal.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorAnchutin/BLDC_CONTROL/HEAD/Сравнение методов управления двигателями FOC | Simlified FOC | Sinusoidal.pdf --------------------------------------------------------------------------------