Skip to content

Commit 0ecb86e

Browse files
committed
devsync fe3c752
1 parent 5b0ac34 commit 0ecb86e

File tree

3 files changed

+6
-9
lines changed

3 files changed

+6
-9
lines changed

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@
99
<summary><b>ChangeLog</b></summary>
1010

1111
````
12+
== 2024-01-14
13+
* DevSync: Fix DSM0 audio clipping
1214
== 2023-12-21
1315
* DevSync: Fix DSM0 Callibration + Voltage engines
1416
== 2023-12-18

platformio.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
[env]
1111
extra_scripts = pre:.pre_build.py
12-
lib_machine = 7702517
12+
lib_machine = fe3c752
1313

1414
[env:SC_DSM0]
1515
platform = ststm32

src/main.cxx

Lines changed: 3 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -46,14 +46,9 @@ void init_engines2()
4646
void init_fun() __attribute__((weak)); \
4747
init_fun();
4848

49-
static uint32_t p[5];
50-
p[0] = (uint32_t)plaits::fm_patches_table[0];
51-
p[1] = (uint32_t)plaits::fm_patches_table[1];
52-
p[2] = (uint32_t)plaits::fm_patches_table[2];
53-
p[3] = (uint32_t)machine::flash_read("DXFMSYX0");
54-
p[4] = 0;
55-
56-
machine::register_symbol("fm_patches_table", p);
49+
// machine::register_flash_blob("DXFMSYXA", plaits::fm_patches_table[0]);
50+
// machine::register_flash_blob("DXFMSYXB", plaits::fm_patches_table[1]);
51+
// machine::register_flash_blob("DXFMSYXC", plaits::fm_patches_table[2]);
5752

5853
MACHINE_INIT(init_modulations);
5954
MACHINE_INIT(init_quantizer);

0 commit comments

Comments
 (0)