From 14267658a66de571e7b81cf2641effe04b0fd4b0 Mon Sep 17 00:00:00 2001 From: Fabian Uehleke Date: Mon, 22 Jun 2026 13:52:01 +0200 Subject: [PATCH 1/2] fix OAT DEC Circumference OAT DEC was wrongly configured through commonSteps, getting the same DEC Circumference as OAM. OAT has this set in configuration_adv already --- .../configurations/base/commonSteps.js | 4 ---- src/modules/configurations/oam/oamSteps.js | 22 +++++++++++++------ 2 files changed, 15 insertions(+), 11 deletions(-) diff --git a/src/modules/configurations/base/commonSteps.js b/src/modules/configurations/base/commonSteps.js index d14841d..12cd4bf 100644 --- a/src/modules/configurations/base/commonSteps.js +++ b/src/modules/configurations/base/commonSteps.js @@ -202,10 +202,6 @@ export const createDECStepperStep = () => ({ { key: 'BY', value: 'Modded 28BYJ-48 (Bipolar)', image: '/images/byj48.png', defineValue: 'STEPPER_TYPE_ENABLED', additionalLines: ['#define DEC_STEPPER_SPR 2048.0f'], condition: "($stepperlib != N)" }, ] }, - postamble: [{ - literal: ['#define DEC_WHEEL_CIRCUMFERENCE 816.814f'], - - }], }); // DEC Driver step (OAT/OAM/OAE) diff --git a/src/modules/configurations/oam/oamSteps.js b/src/modules/configurations/oam/oamSteps.js index 7662237..58937a5 100644 --- a/src/modules/configurations/oam/oamSteps.js +++ b/src/modules/configurations/oam/oamSteps.js @@ -123,14 +123,8 @@ export const getOAMSteps = () => [ { key: 'S', label: 'Microstepping setting', defaultValue: '{Defaults.OAMMicrostepping.decstpr}', defineLine: '#define DEC_SLEW_MICROSTEPPING {0}\n#define DEC_GUIDE_MICROSTEPPING {0}' }, ] }, - postamble: [{ - literal: [ - '', - '// Is it going the wrong way?', - '#define DEC_INVERT_DIR 0' - ] - }] }, + createDECPulleyTeethStep(), { id: 'DLO', @@ -145,7 +139,21 @@ export const getOAMSteps = () => [ { key: 'N', label: 'Degrees DEC can move from Home', defaultValue: '120', defineLine: '#define DEC_LIMIT_UP {0} // degrees from Home\n#define DEC_LIMIT_DOWN {0}' }, ] }, + postamble: [{ + literal: [ + '', + '// Is it going the wrong way?', + '#define DEC_INVERT_DIR 0', + '', + '// DEC Wheel Circumference', + ['#define DEC_WHEEL_CIRCUMFERENCE 816.814f'], + ] + }] + }, + + + { id: 'ZST', title: 'Azimuth Stepper', From b6ad96e336de44a81d33bc819cf84e3d6e2ad19c Mon Sep 17 00:00:00 2001 From: Fabian Uehleke Date: Mon, 22 Jun 2026 13:55:04 +0200 Subject: [PATCH 2/2] version bump --- src/modules/Home.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/Home.jsx b/src/modules/Home.jsx index 93741b8..a6c0462 100644 --- a/src/modules/Home.jsx +++ b/src/modules/Home.jsx @@ -13,7 +13,7 @@ const Home = (props) => {

OAT/OAM/OAE Firmware Configuration Generator

START -

V3.12

+

V3.13