Skip to content

Blue-Design/arduino-tool-stm32load

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 

Repository files navigation

arduinoSTM32load

multiplatform launcher for Arduino STM32F4 Core dfu-util flashing utility

Compiling

  • Download go package from here or using your package manager
  • cd into the root folder of this project
  • execute
export GOPATH=$PWD
export GOBIN=.
go get -d
go build

to produce a binary of arduinoSTM32load for your architecture.

To cross compile for different OS/architecture combinations, execute

GOOS=windows GOARCH=386 go build  #windows
GOOS=darwin GOARCH=amd64 go build #osx
GOOS=linux GOARCH=386 go build    #linux_x86
GOOS=linux GOARCH=amd64 go build  #linux_x86-64

Credits

arduinoSTM32load is based on arduino101load by Martino Facchin

About

Multiplatform launcher for Arduino STM32 dfu-util flashing utility

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Go 82.2%
  • Shell 17.8%