Skip to content

Instantly share code, notes, and snippets.

@proffalken
Created March 28, 2019 13:16
Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save proffalken/40aff107d9f778042d6c40bc8249c6b2 to your computer and use it in GitHub Desktop.
Save proffalken/40aff107d9f778042d6c40bc8249c6b2 to your computer and use it in GitHub Desktop.
Platformio Makefile
# Uncomment lines below if you have problems with $PATH
#SHELL := /bin/bash
#PATH := /usr/local/bin:$(PATH)
all:
platformio -f run
upload:
platformio -f run --target upload
clean:
platformio -f run --target clean
program:
platformio -f run --target program
uploadfs:
platformio -f run --target uploadfs
update:
platformio -f update
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment