Skip to content

Commit 9fd4e39

Browse files
committed
devsync 19fedcf
1 parent bc63450 commit 9fd4e39

8 files changed

Lines changed: 25 additions & 5 deletions

CHANGELOG.txt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

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

5+
== 2025-12-14
6+
* Enchancement
7+
* SEQ engines: support any input for clock-source #118
8+
* Midi+Clock+Timing: Tigger-Input-Delay setting #150
59
== 2025-12-07
610
* Bugfix
711
* IO-page/Stereo control not allways visible (depends on output settings)

README.md

Lines changed: 19 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -204,13 +204,22 @@ The I/O-Configuration page lets you virtually patch the engine with the hardware
204204
* **Trig-Input**:
205205
* `-`
206206
* `T1`, `T2`, `T3`, `T4`, `C1`, `C2`, `C3`, `C4`
207+
* `$1-$9`
208+
209+
*In case the Engine supports Clock-Input - Clock-Source is configurable:*
210+
211+
* **Clock-Source**:
212+
* `CLK` - global clock -> Midi/Clock/Timing settings.
213+
* `T1`, `T2`, `T3`, `T4`, `C1`, `C2`, `C3`, `C4`
214+
* `$1-$9`
207215

208216
*In case the Engine supports Accents (Closed/Open HiHat) - Accent Input is configurable:*
209217

210218
* **Accent-Input**:
211219
* `-`
212220
* `T1`, `T2`, `T3`, `T4`, `C1`, `C2`, `C3`, `C4`
213-
221+
* `$1-$9`
222+
214223
<img align="right" src="doc/inputs2.png" width=196px />
215224

216225
*In case the Engine is an AUDIO_PROCESSOR - Input signal mix is configurable:*
@@ -265,7 +274,7 @@ The I/O-Configuration page lets you virtually patch the engine with the hardware
265274
<br/>
266275
<div style="page-break-after: always;"></div>
267276

268-
## MIDI/CLOCK-Settings
277+
## MIDI+CLOCK+TIMING-Settings
269278

270279
>[Long press [LEFT] + [RIGHT]] for getting to the MIDI-Settings page.
271280
@@ -291,7 +300,14 @@ In case the MIDI-Control is enabled, you can setup the Midi-Channel in the engin
291300
* `T1` T1 as Clock-Input (4ppqn)
292301
* `MIDI` Clock received from MIDI
293302

294-
> Clock-Source is used by engines like `FX/Delay` (clocked sync) or `MIDI/Clock`
303+
> Default Clock-Source for `SEQ/...` engines. <br/>
304+
> Clock-Source is also used by engines like `FX/Delay` (clocked sync) or `MIDI/Clock`
305+
306+
307+
<img align="right" src="doc/config_midi2.png" width=196px />
308+
309+
* **TRIG-In-Delay**: 0-50ms
310+
- Trigger input processing delay in ms. Usecase: sync trig signals with midi or CV
295311

296312
#### Midi-Control
297313
* Engines can be loaded/selected by midi program change

app/NOISE/WhitePink.bin

-48 Bytes
Binary file not shown.

app/squares-and-circles-api.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ EXTERN_C uint32_t micros();
9898
EXTERN_C uint32_t millis();
9999
EXTERN_C uint32_t crc32(uint32_t crc, const void *buf, size_t size);
100100

101-
float linToExp(float in, float inMin, float inMax, float outMin, float outMax)
101+
inline float linToExp(float in, float inMin, float inMax, float outMin, float outMax)
102102
{
103103
float tmp = (in - inMin) / (inMax - inMin);
104104
return outMin * expf(tmp * (logf(outMax / outMin)));

app/squares-and-circles-loader.sha

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
e5097a9
1+
19fedcf

doc/config_midi0.png

2.56 KB
Loading

doc/config_midi1.png

745 Bytes
Loading

doc/config_midi2.png

3.68 KB
Loading

0 commit comments

Comments
 (0)