Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/arduino/arduino101load
multiplatform launcher for Arduino101 dfu-util flashing utility
https://github.com/arduino/arduino101load
Last synced: 16 days ago
JSON representation
multiplatform launcher for Arduino101 dfu-util flashing utility
- Host: GitHub
- URL: https://github.com/arduino/arduino101load
- Owner: arduino
- Created: 2016-01-12T15:26:51.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2023-02-15T09:28:24.000Z (over 1 year ago)
- Last Synced: 2024-10-08T09:51:27.502Z (about 1 month ago)
- Language: Go
- Size: 15.2 MB
- Stars: 0
- Watchers: 10
- Forks: 6
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# arduino101load
[![Release status](https://github.com/arduino/arduino101load/actions/workflows/release-go-crosscompile-task.yml/badge.svg)](https://github.com/arduino/arduino101load/actions/workflows/release-go-crosscompile-task.yml)
multiplatform launcher for Arduino101 dfu-util flashing utility## Compiling
* Download go package from [here](https://golang.org/dl/) or using your package manager
* `cd` into the root folder of this project
* execute
```bash
export GOPATH=$PWD
go get
go build
```
to produce a binary of `arduino101load` for your architecture.To cross compile for different OS/architecture combinations, execute
```bash
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
```