Skip to content

Commit

Permalink
Update changelog to note BOARD_TAG Makefile.in override
Browse files Browse the repository at this point in the history
  • Loading branch information
sparkslabs committed Sep 25, 2016
1 parent 625731c commit 8fc1f80
Showing 1 changed file with 22 additions and 2 deletions.
24 changes: 22 additions & 2 deletions CHANGELOG
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,33 @@ reason.

## [0.0.22] - UNRELEASED

This release sees a practicality change - specifically to allow the user
to specify which arduino board they want their code compiled for. The way
this works is to override the arduino-mk process.

As a result, in order to compile (say) examples/servo/servo-test-target.pyxie
for the arduino Uno, you change the file examples/servo/servo-test-target.Makefile.in
to contain the following:

BOARD_TAG = uno
ARDUINO_PORT = /dev/ttyACM0

This generates the appropriate file. If you had a Dagi Mini, you might change
the contents to this:

BOARD_TAG = atmega8
ARDUINO_PORT = /dev/ttyACM0

Full documentation will come later but this should be sufficient to get started
with.

### New

*
* Ability to override which arduino board you're working with.

### Other

*
* Minor cleanups

## [0.0.21] - 2016-09-17

Expand Down

0 comments on commit 8fc1f80

Please sign in to comment.