Skip to content

Commit

Permalink
dev sync 0cbb427
Browse files Browse the repository at this point in the history
  • Loading branch information
eh2k committed Jan 11, 2025
1 parent 3a8df50 commit aa5c787
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 5 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,10 @@

All notable changes to this project will be documented in this file.

== 2025-0-05
== 2025-01-11
* Changes
* M-OSC/Waveforms - Chords paramter text eg. 1+3+5+7 instead of 0+2+4+6
== 2025-01-05
* Bugfix
* Plaits drums - pitch parameter no effect
* IO-config - accent input was set eq trigger input
Expand Down
Binary file modified app/M-OSC/Waveforms.bin
Binary file not shown.
6 changes: 3 additions & 3 deletions app/M-OSC/Waveforms.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ namespace braids

int32_t Quantizer::Process(int32_t pitch, int32_t root, int8_t *note)
{
pitch -= root + DEFAULT_PITCH;
pitch -= root + DEFAULT_PITCH;
auto ret = engine::qz_process(pitch, note);
ret += root + DEFAULT_PITCH;
return ret;
Expand Down Expand Up @@ -252,12 +252,12 @@ void engine::draw()
else
{
char *p = color_vals;
p += sprintf(p, "Chord-%d\t0", _color + 1);
p += sprintf(p, "Chord-%d\t1", _color + 1);
for (int i = 1; i < LEN_OF(braids::diatonic_chords[_color]); i++)
{
if (braids::diatonic_chords[_color][i] != 0)
{
p += sprintf(p, "+%X", braids::diatonic_chords[_color][i]);
p += sprintf(p, "+%d", 1 + braids::diatonic_chords[_color][i]);
}
}

Expand Down
2 changes: 1 addition & 1 deletion platformio.ini
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,5 @@

[env:squares-and-circles]
apps_json = ./app/index.json
squares_and_circles_loader = 1b0b8eb ; minimum loader version
squares_and_circles_loader = 0cbb427 ; minimum loader version
platform = .pio/

0 comments on commit aa5c787

Please sign in to comment.