Add note about avr-gcc version and workaround for macOS (#7)

* Add note about avr-gcc version and workaround for macOS

* Fix header
This commit is contained in:
Brian 2019-04-16 03:18:36 -04:00 committed by Takuya Urakawa
parent 3979eb1d32
commit ce10b201ae

View File

@ -18,6 +18,15 @@ After entering bootloader mode,
make plaid:default:program make plaid:default:program
``` ```
#### avr-gcc version
With avr-gcc 8.2.0, you may encounter an error similar to `ERROR: address 0x8002a7 out of range at line 920 of .build/plaid_default.hex`. To work around this on macOS, install an older version of avr-gcc with homebrew,
```
brew uninstall avr-gcc
brew install avr-gcc@7
brew link --force avr-gcc@7
```
And then re-run `make plaid:default:program`.
## Test with wire ## Test with wire
When you burn default keymap, test without soldering switches. When you burn default keymap, test without soldering switches.
You can use any wire and connect switch pads on pcb. You can use any wire and connect switch pads on pcb.