Skip to content

Commit

Permalink
update changelog and docs
Browse files Browse the repository at this point in the history
  • Loading branch information
dromer committed Aug 31, 2023
1 parent c113a24 commit b9364bc
Show file tree
Hide file tree
Showing 2 changed files with 42 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ Next Release

* Daisy: allow for debug printing (off by default, increases program size due to formatting)
* Daisy: set bootloader type in Makefile
* Daisy: MIDI i/o for NoteOn/Off, ControlChange, ProcramChange, ChannelPressure, and PitchBend
* DPF bugfixes: broken midi template include; MIDI_RT_CLOCK fails under certain conditions

0.8.0
Expand Down
42 changes: 41 additions & 1 deletion docs/03.gen.daisy.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,44 @@ Which can be configured using the `-m` metadata.json `daisy.board` setting:
}
```

However one can also create custom board layouts. See the pd2dsy documentation for more information.
However one can also create custom board layouts. See [the Electro-Smith documentation](https://github.com/electro-smith/DaisyWiki/wiki/Pd2dsy-Guide) for more information.

The custom layout can be passed on via the meta.json as such:

```json
{
"daisy": {
"board_file": <path to board.json>
}
}
```

## MIDI

Board files that have `OOPSY_TARGET_HAS_MIDI_INPUT` configured will automatically set up UART MIDI on the default USART1 Rx and Tx pins of the Daisy (D13/14).

Additionally `usb_midi`, running on the onboard micro-usb, can be enabled separately via the meta.json

```json
{
"daisy": {
"usb_midi": true
}
}
```

At the moment all midi messages will be merged between USB and UART MIDI interfaces. In the future it will likely be possible to assign additional UART pins and group them under a specific PD midi "port".

## [print] object

Printing to serial console can be enabled using the `debug_printing` flag in the meta.json:

```json
{
"daisy": {
"debug_printing": true
}
}
```

This will increase the program size with a few kb and will disable `usb_midi` as we currently do not have composite USB device yet.

0 comments on commit b9364bc

Please sign in to comment.