├── PID ├── pid.c └── pid.h ├── PWM ├── pwm.c └── pwm.h ├── README.md ├── TIME3 ├── tim3.c └── tim3.h ├── TIME4 ├── tim4.c └── tim4.h ├── TIM_CONT ├── timcont.c └── timcont.h └── main.c /PID/pid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuguangjie/STM32-PID-Motor/HEAD/PID/pid.c -------------------------------------------------------------------------------- /PID/pid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuguangjie/STM32-PID-Motor/HEAD/PID/pid.h -------------------------------------------------------------------------------- /PWM/pwm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuguangjie/STM32-PID-Motor/HEAD/PWM/pwm.c -------------------------------------------------------------------------------- /PWM/pwm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuguangjie/STM32-PID-Motor/HEAD/PWM/pwm.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuguangjie/STM32-PID-Motor/HEAD/README.md -------------------------------------------------------------------------------- /TIME3/tim3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuguangjie/STM32-PID-Motor/HEAD/TIME3/tim3.c -------------------------------------------------------------------------------- /TIME3/tim3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuguangjie/STM32-PID-Motor/HEAD/TIME3/tim3.h -------------------------------------------------------------------------------- /TIME4/tim4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuguangjie/STM32-PID-Motor/HEAD/TIME4/tim4.c -------------------------------------------------------------------------------- /TIME4/tim4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuguangjie/STM32-PID-Motor/HEAD/TIME4/tim4.h -------------------------------------------------------------------------------- /TIM_CONT/timcont.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuguangjie/STM32-PID-Motor/HEAD/TIM_CONT/timcont.c -------------------------------------------------------------------------------- /TIM_CONT/timcont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuguangjie/STM32-PID-Motor/HEAD/TIM_CONT/timcont.h -------------------------------------------------------------------------------- /main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuguangjie/STM32-PID-Motor/HEAD/main.c --------------------------------------------------------------------------------