Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add some clarifying notes to the readme #302

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -104,6 +104,8 @@ arm-none-eabi-objcopy -O ihex build/Blink.elf build/Blink.hex
arm-none-eabi-objcopy -O binary -S build/Blink.elf build/Blink.bin
```

Just be certain to run `make` in both the DaisySP and libDaisy folders first to avoid any ld errors.

### Flashing an example to the Daisy

The example can be programmed via the [Daisy Web Programmer](https://electro-smith.github.io/Programmer/)
Expand All @@ -116,6 +118,15 @@ make program-dfu
make program
```

Don't worry if you see an error like

```sh
dfu-util: Error during download get_status
make: *** [program-dfu] Error 74
```

So long as you see `File downloaded successfully` you're good.

## Updating the submodules

To pull everything for the repo and submodules:
Expand Down