├── .gitignore ├── Makefile ├── README.md ├── inc ├── cmsis_gcc.h ├── core_cm0.h ├── core_cmFunc.h ├── core_cmInstr.h └── stm32f030x6.h ├── src ├── main.c ├── startup_stm32.s ├── tb6612.c ├── tb6612.h ├── user_i2c.c └── user_i2c.h ├── stm32f0-openocd.cfg ├── stm32f030.ld └── stm32f0motor.cfg /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbugalski/wemos_motor_shield/HEAD/.gitignore -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbugalski/wemos_motor_shield/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbugalski/wemos_motor_shield/HEAD/README.md -------------------------------------------------------------------------------- /inc/cmsis_gcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbugalski/wemos_motor_shield/HEAD/inc/cmsis_gcc.h -------------------------------------------------------------------------------- /inc/core_cm0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbugalski/wemos_motor_shield/HEAD/inc/core_cm0.h -------------------------------------------------------------------------------- /inc/core_cmFunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbugalski/wemos_motor_shield/HEAD/inc/core_cmFunc.h -------------------------------------------------------------------------------- /inc/core_cmInstr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbugalski/wemos_motor_shield/HEAD/inc/core_cmInstr.h -------------------------------------------------------------------------------- /inc/stm32f030x6.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbugalski/wemos_motor_shield/HEAD/inc/stm32f030x6.h -------------------------------------------------------------------------------- /src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbugalski/wemos_motor_shield/HEAD/src/main.c -------------------------------------------------------------------------------- /src/startup_stm32.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbugalski/wemos_motor_shield/HEAD/src/startup_stm32.s -------------------------------------------------------------------------------- /src/tb6612.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbugalski/wemos_motor_shield/HEAD/src/tb6612.c -------------------------------------------------------------------------------- /src/tb6612.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbugalski/wemos_motor_shield/HEAD/src/tb6612.h -------------------------------------------------------------------------------- /src/user_i2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbugalski/wemos_motor_shield/HEAD/src/user_i2c.c -------------------------------------------------------------------------------- /src/user_i2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbugalski/wemos_motor_shield/HEAD/src/user_i2c.h -------------------------------------------------------------------------------- /stm32f0-openocd.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbugalski/wemos_motor_shield/HEAD/stm32f0-openocd.cfg -------------------------------------------------------------------------------- /stm32f030.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbugalski/wemos_motor_shield/HEAD/stm32f030.ld -------------------------------------------------------------------------------- /stm32f0motor.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbugalski/wemos_motor_shield/HEAD/stm32f0motor.cfg --------------------------------------------------------------------------------