2021-08-03 23:12:25 +02:00
|
|
|
/*
|
2022-01-07 02:28:35 +01:00
|
|
|
* © 2021 Neil McKechnie
|
|
|
|
* © 2020-2022 Chris Harlow
|
|
|
|
* All rights reserved.
|
2021-08-03 23:12:25 +02:00
|
|
|
*
|
|
|
|
* This file is part of CommandStation-EX
|
|
|
|
*
|
|
|
|
* This is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* It is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with CommandStation. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
*/
|
2021-11-22 12:10:26 +01:00
|
|
|
|
2022-01-30 18:31:26 +01:00
|
|
|
#ifndef EXRAILMacros_H
|
|
|
|
#define EXRAILMacros_H
|
2021-08-03 23:12:25 +02:00
|
|
|
|
2021-09-09 11:12:27 +02:00
|
|
|
// remove normal code LCD & SERIAL macros (will be restored later)
|
2021-08-20 20:18:30 +02:00
|
|
|
#undef LCD
|
2021-09-09 11:12:27 +02:00
|
|
|
#undef SERIAL
|
2021-08-20 20:18:30 +02:00
|
|
|
|
|
|
|
|
|
|
|
// This file will include and build the EXRAIL script and associated helper tricks.
|
2021-11-22 12:10:26 +01:00
|
|
|
// It does this by including myAutomation.h several times, each with a set of macros to
|
2021-08-20 20:18:30 +02:00
|
|
|
// extract the relevant parts.
|
|
|
|
|
2021-08-03 23:12:25 +02:00
|
|
|
// The entire automation script is contained within a byte array RMFT2::RouteCode[]
|
|
|
|
// made up of opcode and parameter pairs.
|
|
|
|
// ech opcode is a 1 byte operation plus 2 byte operand.
|
|
|
|
// The array is normally built using the macros below as this makes it easier
|
|
|
|
// to manage the cases where:
|
|
|
|
// - padding must be applied to ensure the correct alignment of the next instruction
|
|
|
|
// - large parameters must be split up
|
|
|
|
// - multiple parameters aligned correctly
|
|
|
|
// - a single macro requires multiple operations
|
|
|
|
|
2021-08-20 20:18:30 +02:00
|
|
|
// Descriptive texts for routes and animations are created in a sepaerate function which
|
|
|
|
// can be called to emit a list of routes/automatuions in a form suitable for Withrottle.
|
2021-08-03 23:12:25 +02:00
|
|
|
|
2021-08-20 20:18:30 +02:00
|
|
|
// PRINT(msg) and LCD(row,msg) is implemented in a separate pass to create
|
|
|
|
// a getMessageText(id) function.
|
2021-08-03 23:12:25 +02:00
|
|
|
|
2021-08-20 20:18:30 +02:00
|
|
|
// CAUTION: The macros below are multiple passed over myAutomation.h
|
2021-08-10 17:32:23 +02:00
|
|
|
|
2022-04-08 12:41:50 +02:00
|
|
|
|
|
|
|
// helper macro for turnout descriptions, creates NULL for missing description
|
2022-04-03 12:19:04 +02:00
|
|
|
#define O_DESC(id, desc) case id: return ("" desc)[0]?F("" desc):NULL;
|
2022-04-08 12:41:50 +02:00
|
|
|
// helper macro for turnout description as HIDDEN
|
2022-04-13 00:10:29 +02:00
|
|
|
#define HIDDEN "\x01"
|
2022-04-03 12:19:04 +02:00
|
|
|
|
2021-11-27 12:29:26 +01:00
|
|
|
// Pass 1 Implements aliases
|
2022-01-30 18:31:26 +01:00
|
|
|
#include "EXRAIL2MacroReset.h"
|
2021-11-27 12:29:26 +01:00
|
|
|
#undef ALIAS
|
2022-03-21 17:29:35 +01:00
|
|
|
#define ALIAS(name,value...) const int name= 1##value##0 ==10 ? -__COUNTER__ : value##0/10;
|
2021-08-10 17:32:23 +02:00
|
|
|
#include "myAutomation.h"
|
|
|
|
|
2022-04-03 12:19:04 +02:00
|
|
|
// Pass 2 create throttle route list
|
2022-01-30 18:31:26 +01:00
|
|
|
#include "EXRAIL2MacroReset.h"
|
2021-08-10 17:32:23 +02:00
|
|
|
#undef ROUTE
|
2022-04-03 12:19:04 +02:00
|
|
|
#define ROUTE(id, description) id,
|
|
|
|
const int16_t FLASH RMFT2::routeIdList[]= {
|
2021-11-27 12:29:26 +01:00
|
|
|
#include "myAutomation.h"
|
2022-04-03 12:19:04 +02:00
|
|
|
0};
|
2022-04-08 17:13:15 +02:00
|
|
|
// Pass 2a create throttle automation list
|
|
|
|
#include "EXRAIL2MacroReset.h"
|
|
|
|
#undef AUTOMATION
|
|
|
|
#define AUTOMATION(id, description) id,
|
|
|
|
const int16_t FLASH RMFT2::automationIdList[]= {
|
|
|
|
#include "myAutomation.h"
|
|
|
|
0};
|
2022-04-03 12:19:04 +02:00
|
|
|
|
|
|
|
// Pass 3 Create route descriptions:
|
|
|
|
#undef ROUTE
|
|
|
|
#define ROUTE(id, description) case id: return F(description);
|
|
|
|
#undef AUTOMATION
|
|
|
|
#define AUTOMATION(id, description) case id: return F(description);
|
|
|
|
const FSH * RMFT2::getRouteDescription(int16_t id) {
|
|
|
|
switch(id) {
|
|
|
|
#include "myAutomation.h"
|
|
|
|
default: break;
|
|
|
|
}
|
2022-04-12 19:47:06 +02:00
|
|
|
return F("");
|
2021-11-27 12:29:26 +01:00
|
|
|
}
|
2021-08-10 17:32:23 +02:00
|
|
|
|
2022-04-03 12:19:04 +02:00
|
|
|
// Pass 4... Create Text sending functions
|
2022-01-30 18:31:26 +01:00
|
|
|
#include "EXRAIL2MacroReset.h"
|
2021-08-12 09:53:52 +02:00
|
|
|
const int StringMacroTracker1=__COUNTER__;
|
2022-03-07 17:30:47 +01:00
|
|
|
#undef BROADCAST
|
|
|
|
#define BROADCAST(msg) case (__COUNTER__ - StringMacroTracker1) : CommandDistributor::broadcastText(F(msg));break;
|
2022-03-31 23:04:40 +02:00
|
|
|
#undef PARSE
|
|
|
|
#define PARSE(msg) case (__COUNTER__ - StringMacroTracker1) : DCCEXParser::parse(F(msg));break;
|
2021-11-27 12:29:26 +01:00
|
|
|
#undef PRINT
|
2021-09-08 17:29:58 +02:00
|
|
|
#define PRINT(msg) case (__COUNTER__ - StringMacroTracker1) : printMessage2(F(msg));break;
|
2021-11-27 12:29:26 +01:00
|
|
|
#undef LCN
|
2021-09-08 17:29:58 +02:00
|
|
|
#define LCN(msg) case (__COUNTER__ - StringMacroTracker1) : StringFormatter::send(&LCN_SERIAL,F(msg));break;
|
2021-11-27 12:29:26 +01:00
|
|
|
#undef SERIAL
|
2021-09-08 17:29:58 +02:00
|
|
|
#define SERIAL(msg) case (__COUNTER__ - StringMacroTracker1) : StringFormatter::send(&Serial,F(msg));break;
|
2021-11-27 12:29:26 +01:00
|
|
|
#undef SERIAL1
|
2021-09-08 17:21:04 +02:00
|
|
|
#define SERIAL1(msg) case (__COUNTER__ - StringMacroTracker1) : StringFormatter::send(&Serial1,F(msg));break;
|
2021-11-27 12:29:26 +01:00
|
|
|
#undef SERIAL2
|
2021-10-01 12:01:32 +02:00
|
|
|
#define SERIAL2(msg) case (__COUNTER__ - StringMacroTracker1) : StringFormatter::send(&Serial2,F(msg));break;
|
2021-11-27 12:29:26 +01:00
|
|
|
#undef SERIAL3
|
2021-09-08 17:21:04 +02:00
|
|
|
#define SERIAL3(msg) case (__COUNTER__ - StringMacroTracker1) : StringFormatter::send(&Serial3,F(msg));break;
|
2021-11-27 12:29:26 +01:00
|
|
|
#undef LCD
|
2021-09-08 17:29:58 +02:00
|
|
|
#define LCD(id,msg) case (__COUNTER__ - StringMacroTracker1) : StringFormatter::lcd(id,F(msg));break;
|
2021-08-20 20:18:30 +02:00
|
|
|
|
2021-11-27 12:29:26 +01:00
|
|
|
void RMFT2::printMessage(uint16_t id) {
|
|
|
|
switch(id) {
|
|
|
|
#include "myAutomation.h"
|
2021-12-28 20:06:47 +01:00
|
|
|
default: break ;
|
2021-11-27 12:29:26 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2022-04-03 12:19:04 +02:00
|
|
|
// Pass 5: Turnout descriptions (optional)
|
2022-01-30 18:31:26 +01:00
|
|
|
#include "EXRAIL2MacroReset.h"
|
2021-08-10 17:32:23 +02:00
|
|
|
#undef TURNOUT
|
2022-04-03 12:19:04 +02:00
|
|
|
#define TURNOUT(id,addr,subaddr,description...) O_DESC(id,description)
|
2021-11-27 12:29:26 +01:00
|
|
|
#undef PIN_TURNOUT
|
2022-04-03 12:19:04 +02:00
|
|
|
#define PIN_TURNOUT(id,pin,description...) O_DESC(id,description)
|
2021-11-27 12:29:26 +01:00
|
|
|
#undef SERVO_TURNOUT
|
2022-04-03 12:19:04 +02:00
|
|
|
#define SERVO_TURNOUT(id,pin,activeAngle,inactiveAngle,profile,description...) O_DESC(id,description)
|
2022-03-24 12:56:06 +01:00
|
|
|
#undef VIRTUAL_TURNOUT
|
2022-04-03 12:19:04 +02:00
|
|
|
#define VIRTUAL_TURNOUT(id,description...) O_DESC(id,description)
|
2021-11-27 12:29:26 +01:00
|
|
|
|
2022-04-03 12:19:04 +02:00
|
|
|
const FSH * RMFT2::getTurnoutDescription(int16_t turnoutid) {
|
2021-11-27 12:29:26 +01:00
|
|
|
switch (turnoutid) {
|
|
|
|
#include "myAutomation.h"
|
2022-04-03 12:19:04 +02:00
|
|
|
default:break;
|
2021-11-27 12:29:26 +01:00
|
|
|
}
|
2022-04-03 12:19:04 +02:00
|
|
|
return NULL;
|
2021-11-27 12:29:26 +01:00
|
|
|
}
|
|
|
|
|
2022-04-03 12:19:04 +02:00
|
|
|
// Pass 6: Roster IDs (count)
|
2022-01-30 18:31:26 +01:00
|
|
|
#include "EXRAIL2MacroReset.h"
|
2021-12-26 19:24:04 +01:00
|
|
|
#undef ROSTER
|
|
|
|
#define ROSTER(cabid,name,funcmap...) +1
|
|
|
|
const byte RMFT2::rosterNameCount=0
|
2022-04-03 12:19:04 +02:00
|
|
|
#include "myAutomation.h"
|
|
|
|
;
|
|
|
|
|
|
|
|
// Pass 6: Roster IDs
|
2022-01-30 18:31:26 +01:00
|
|
|
#include "EXRAIL2MacroReset.h"
|
2021-12-26 19:24:04 +01:00
|
|
|
#undef ROSTER
|
2022-04-03 12:19:04 +02:00
|
|
|
#define ROSTER(cabid,name,funcmap...) cabid,
|
|
|
|
const int16_t FLASH RMFT2::rosterIdList[]={
|
|
|
|
#include "myAutomation.h"
|
|
|
|
0};
|
2021-12-26 19:24:04 +01:00
|
|
|
|
2022-04-03 12:19:04 +02:00
|
|
|
// Pass 7: Roster names getter
|
2022-01-30 18:31:26 +01:00
|
|
|
#include "EXRAIL2MacroReset.h"
|
2021-12-26 19:24:04 +01:00
|
|
|
#undef ROSTER
|
2022-04-03 12:19:04 +02:00
|
|
|
#define ROSTER(cabid,name,funcmap...) case cabid: return F(name);
|
|
|
|
const FSH * RMFT2::getRosterName(int16_t id) {
|
|
|
|
switch(id) {
|
2021-12-26 19:24:04 +01:00
|
|
|
#include "myAutomation.h"
|
2022-04-12 19:47:06 +02:00
|
|
|
default: break;
|
2022-04-03 12:19:04 +02:00
|
|
|
}
|
2022-04-12 19:47:06 +02:00
|
|
|
return F("");
|
2022-04-03 12:19:04 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// Pass to get roster functions
|
|
|
|
#undef ROSTER
|
2022-04-12 19:47:06 +02:00
|
|
|
#define ROSTER(cabid,name,funcmap...) case cabid: return F("" funcmap);
|
2022-04-03 12:19:04 +02:00
|
|
|
const FSH * RMFT2::getRosterFunctions(int16_t id) {
|
|
|
|
switch(id) {
|
|
|
|
#include "myAutomation.h"
|
|
|
|
default: break;
|
|
|
|
}
|
2022-04-12 19:47:06 +02:00
|
|
|
return F("");
|
2022-04-03 12:19:04 +02:00
|
|
|
}
|
2021-12-26 19:24:04 +01:00
|
|
|
|
2022-01-03 13:43:06 +01:00
|
|
|
// Pass 8 Signal definitions
|
2022-01-30 18:31:26 +01:00
|
|
|
#include "EXRAIL2MacroReset.h"
|
2022-01-03 13:43:06 +01:00
|
|
|
#undef SIGNAL
|
2022-02-06 14:56:51 +01:00
|
|
|
#define SIGNAL(redpin,amberpin,greenpin) redpin,redpin,amberpin,greenpin,
|
2022-03-18 14:46:07 +01:00
|
|
|
#undef SIGNALH
|
|
|
|
#define SIGNALH(redpin,amberpin,greenpin) redpin | RMFT2::ACTIVE_HIGH_SIGNAL_FLAG,redpin,amberpin,greenpin,
|
2022-02-06 14:56:51 +01:00
|
|
|
#undef SERVO_SIGNAL
|
|
|
|
#define SERVO_SIGNAL(vpin,redval,amberval,greenval) vpin | RMFT2::SERVO_SIGNAL_FLAG,redval,amberval,greenval,
|
2022-01-03 13:43:06 +01:00
|
|
|
const FLASH int16_t RMFT2::SignalDefinitions[] = {
|
|
|
|
#include "myAutomation.h"
|
2022-02-06 14:56:51 +01:00
|
|
|
0,0,0,0 };
|
2022-01-03 13:43:06 +01:00
|
|
|
|
2021-12-26 19:24:04 +01:00
|
|
|
// Last Pass : create main routes table
|
2021-11-27 12:29:26 +01:00
|
|
|
// Only undef the macros, not dummy them.
|
|
|
|
#define RMFT2_UNDEF_ONLY
|
2022-01-30 18:31:26 +01:00
|
|
|
#include "EXRAIL2MacroReset.h"
|
2021-11-22 12:10:26 +01:00
|
|
|
// Define internal helper macros.
|
|
|
|
// Everything we generate here has to be compile-time evaluated to
|
|
|
|
// a constant.
|
|
|
|
#define V(val) (byte)(((int16_t)(val))&0x00FF),(byte)(((int16_t)(val)>>8)&0x00FF)
|
2021-08-20 20:18:30 +02:00
|
|
|
// Define macros for route code creation
|
2021-11-22 12:10:26 +01:00
|
|
|
|
|
|
|
#define ACTIVATE(addr,subaddr) OPCODE_DCCACTIVATE,V(addr<<3 | subaddr<<1 | 1),
|
2022-01-05 11:00:11 +01:00
|
|
|
#define ACTIVATEL(addr) OPCODE_DCCACTIVATE,V((addr+3)<<1 | 1),
|
2021-08-03 23:12:25 +02:00
|
|
|
#define AFTER(sensor_id) OPCODE_AT,V(sensor_id),OPCODE_AFTER,V(sensor_id),
|
2022-03-21 17:29:35 +01:00
|
|
|
#define ALIAS(name,value...)
|
2021-08-03 23:12:25 +02:00
|
|
|
#define AMBER(signal_id) OPCODE_AMBER,V(signal_id),
|
|
|
|
#define AT(sensor_id) OPCODE_AT,V(sensor_id),
|
2022-03-18 14:46:07 +01:00
|
|
|
#define ATGTE(sensor_id,value) OPCODE_ATGTE,V(sensor_id),OPCODE_PAD,V(value),
|
|
|
|
#define ATLT(sensor_id,value) OPCODE_ATLT,V(sensor_id),OPCODE_PAD,V(value),
|
2022-01-03 11:15:10 +01:00
|
|
|
#define ATTIMEOUT(sensor_id,timeout) OPCODE_ATTIMEOUT1,0,0,OPCODE_ATTIMEOUT2,V(sensor_id),OPCODE_PAD,V(timeout/100L),
|
2021-11-27 12:29:26 +01:00
|
|
|
#define AUTOMATION(id, description) OPCODE_AUTOMATION, V(id),
|
2021-11-22 12:10:26 +01:00
|
|
|
#define AUTOSTART OPCODE_AUTOSTART,0,0,
|
2022-03-07 17:30:47 +01:00
|
|
|
#define BROADCAST(msg) PRINT(msg)
|
2021-08-03 23:12:25 +02:00
|
|
|
#define CALL(route) OPCODE_CALL,V(route),
|
|
|
|
#define CLOSE(id) OPCODE_CLOSE,V(id),
|
2021-11-27 12:29:26 +01:00
|
|
|
#define DEACTIVATE(addr,subaddr) OPCODE_DCCACTIVATE,V(addr<<3 | subaddr<<1),
|
2022-01-05 11:00:11 +01:00
|
|
|
#define DEACTIVATEL(addr) OPCODE_DCCACTIVATE,V((addr+3)<<1),
|
2022-01-03 20:15:44 +01:00
|
|
|
#define DELAY(ms) ms<30000?OPCODE_DELAYMS:OPCODE_DELAY,V(ms/(ms<30000?1L:100L)),
|
2021-08-03 23:12:25 +02:00
|
|
|
#define DELAYMINS(mindelay) OPCODE_DELAYMINS,V(mindelay),
|
2022-01-04 22:26:21 +01:00
|
|
|
#define DELAYRANDOM(mindelay,maxdelay) DELAY(mindelay) OPCODE_RANDWAIT,V((maxdelay-mindelay)/100L),
|
2021-11-27 12:29:26 +01:00
|
|
|
#define DONE OPCODE_ENDTASK,0,0,
|
|
|
|
#define DRIVE(analogpin) OPCODE_DRIVE,V(analogpin),
|
2022-01-02 20:41:57 +01:00
|
|
|
#define ELSE OPCODE_ELSE,0,0,
|
2021-11-27 12:29:26 +01:00
|
|
|
#define ENDEXRAIL
|
2021-11-22 12:10:26 +01:00
|
|
|
#define ENDIF OPCODE_ENDIF,0,0,
|
2021-11-27 12:29:26 +01:00
|
|
|
#define ENDTASK OPCODE_ENDTASK,0,0,
|
2021-08-03 23:12:25 +02:00
|
|
|
#define ESTOP OPCODE_SPEED,V(1),
|
2021-11-27 12:29:26 +01:00
|
|
|
#define EXRAIL
|
2021-08-27 18:01:18 +02:00
|
|
|
#define FADE(pin,value,ms) OPCODE_SERVO,V(pin),OPCODE_PAD,V(value),OPCODE_PAD,V(PCA9685::ProfileType::UseDuration|PCA9685::NoPowerOff),OPCODE_PAD,V(ms/100L),
|
2021-08-03 23:12:25 +02:00
|
|
|
#define FOFF(func) OPCODE_FOFF,V(func),
|
|
|
|
#define FOLLOW(route) OPCODE_FOLLOW,V(route),
|
|
|
|
#define FON(func) OPCODE_FON,V(func),
|
2022-03-24 11:40:49 +01:00
|
|
|
#define FORGET OPCODE_FORGET,0,0,
|
2021-08-03 23:12:25 +02:00
|
|
|
#define FREE(blockid) OPCODE_FREE,V(blockid),
|
|
|
|
#define FWD(speed) OPCODE_FWD,V(speed),
|
|
|
|
#define GREEN(signal_id) OPCODE_GREEN,V(signal_id),
|
|
|
|
#define IF(sensor_id) OPCODE_IF,V(sensor_id),
|
2022-04-17 10:58:32 +02:00
|
|
|
#define IFAMBER(signal_id) OPCODE_IFAMBER,V(signal_id),
|
2021-12-29 12:15:31 +01:00
|
|
|
#define IFCLOSED(turnout_id) OPCODE_IFCLOSED,V(turnout_id),
|
2022-04-17 10:58:32 +02:00
|
|
|
#define IFGREEN(signal_id) OPCODE_IFGREEN,V(signal_id),
|
2021-11-30 14:52:22 +01:00
|
|
|
#define IFGTE(sensor_id,value) OPCODE_IFGTE,V(sensor_id),OPCODE_PAD,V(value),
|
|
|
|
#define IFLT(sensor_id,value) OPCODE_IFLT,V(sensor_id),OPCODE_PAD,V(value),
|
2021-08-03 23:12:25 +02:00
|
|
|
#define IFNOT(sensor_id) OPCODE_IFNOT,V(sensor_id),
|
|
|
|
#define IFRANDOM(percent) OPCODE_IFRANDOM,V(percent),
|
2022-04-17 10:58:32 +02:00
|
|
|
#define IFRED(signal_id) OPCODE_IFRED,V(signal_id),
|
2021-08-03 23:12:25 +02:00
|
|
|
#define IFRESERVE(block) OPCODE_IFRESERVE,V(block),
|
2021-12-29 12:15:31 +01:00
|
|
|
#define IFTHROWN(turnout_id) OPCODE_IFTHROWN,V(turnout_id),
|
2022-01-03 11:15:10 +01:00
|
|
|
#define IFTIMEOUT OPCODE_IFTIMEOUT,0,0,
|
2021-11-22 12:10:26 +01:00
|
|
|
#define INVERT_DIRECTION OPCODE_INVERT_DIRECTION,0,0,
|
|
|
|
#define JOIN OPCODE_JOIN,0,0,
|
2022-03-31 22:52:43 +02:00
|
|
|
#define KILLALL OPCODE_KILLALL,0,0,
|
2021-08-03 23:12:25 +02:00
|
|
|
#define LATCH(sensor_id) OPCODE_LATCH,V(sensor_id),
|
2021-09-08 17:21:04 +02:00
|
|
|
#define LCD(id,msg) PRINT(msg)
|
|
|
|
#define LCN(msg) PRINT(msg)
|
2021-11-25 12:36:05 +01:00
|
|
|
#define ONACTIVATE(addr,subaddr) OPCODE_ONACTIVATE,V(addr<<2|subaddr),
|
|
|
|
#define ONACTIVATEL(linear) OPCODE_ONACTIVATE,V(linear+3),
|
2021-08-03 23:12:25 +02:00
|
|
|
#define ONCLOSE(turnout_id) OPCODE_ONCLOSE,V(turnout_id),
|
2021-11-27 12:29:26 +01:00
|
|
|
#define ONDEACTIVATE(addr,subaddr) OPCODE_ONDEACTIVATE,V(addr<<2|subaddr),
|
|
|
|
#define ONDEACTIVATEL(linear) OPCODE_ONDEACTIVATE,V(linear+3),
|
2021-08-03 23:12:25 +02:00
|
|
|
#define ONTHROW(turnout_id) OPCODE_ONTHROW,V(turnout_id),
|
2021-11-22 12:10:26 +01:00
|
|
|
#define PAUSE OPCODE_PAUSE,0,0,
|
2021-11-27 12:29:26 +01:00
|
|
|
#define PIN_TURNOUT(id,pin,description...) OPCODE_PINTURNOUT,V(id),OPCODE_PAD,V(pin),
|
2021-08-03 23:12:25 +02:00
|
|
|
#define POM(cv,value) OPCODE_POM,V(cv),OPCODE_PAD,V(value),
|
2021-11-22 12:10:26 +01:00
|
|
|
#define POWEROFF OPCODE_POWEROFF,0,0,
|
2022-03-07 17:30:47 +01:00
|
|
|
#define POWERON OPCODE_POWERON,0,0,
|
2021-08-12 09:53:52 +02:00
|
|
|
#define PRINT(msg) OPCODE_PRINT,V(__COUNTER__ - StringMacroTracker2),
|
2022-03-31 23:04:40 +02:00
|
|
|
#define PARSE(msg) PRINT(msg)
|
2021-11-22 12:10:26 +01:00
|
|
|
#define READ_LOCO OPCODE_READ_LOCO1,0,0,OPCODE_READ_LOCO2,0,0,
|
2021-08-03 23:12:25 +02:00
|
|
|
#define RED(signal_id) OPCODE_RED,V(signal_id),
|
|
|
|
#define RESERVE(blockid) OPCODE_RESERVE,V(blockid),
|
2021-08-28 18:39:48 +02:00
|
|
|
#define RESET(pin) OPCODE_RESET,V(pin),
|
2021-11-22 12:10:26 +01:00
|
|
|
#define RESUME OPCODE_RESUME,0,0,
|
|
|
|
#define RETURN OPCODE_RETURN,0,0,
|
2021-08-03 23:12:25 +02:00
|
|
|
#define REV(speed) OPCODE_REV,V(speed),
|
2021-12-26 19:24:04 +01:00
|
|
|
#define ROSTER(cabid,name,funcmap...)
|
2021-11-27 12:29:26 +01:00
|
|
|
#define ROUTE(id, description) OPCODE_ROUTE, V(id),
|
2021-08-16 17:30:30 +02:00
|
|
|
#define SENDLOCO(cab,route) OPCODE_SENDLOCO,V(cab),OPCODE_PAD,V(route),
|
2021-11-27 12:29:26 +01:00
|
|
|
#define SEQUENCE(id) OPCODE_SEQUENCE, V(id),
|
2021-09-08 17:29:58 +02:00
|
|
|
#define SERIAL(msg) PRINT(msg)
|
2021-09-08 17:21:04 +02:00
|
|
|
#define SERIAL1(msg) PRINT(msg)
|
|
|
|
#define SERIAL2(msg) PRINT(msg)
|
|
|
|
#define SERIAL3(msg) PRINT(msg)
|
2021-08-28 18:39:48 +02:00
|
|
|
#define SERVO(id,position,profile) OPCODE_SERVO,V(id),OPCODE_PAD,V(position),OPCODE_PAD,V(PCA9685::profile),OPCODE_PAD,V(0),
|
|
|
|
#define SERVO2(id,position,ms) OPCODE_SERVO,V(id),OPCODE_PAD,V(position),OPCODE_PAD,V(PCA9685::Instant),OPCODE_PAD,V(ms/100L),
|
2022-02-06 14:56:51 +01:00
|
|
|
#define SERVO_SIGNAL(vpin,redpos,amberpos,greenpos)
|
2021-11-27 12:29:26 +01:00
|
|
|
#define SERVO_TURNOUT(id,pin,activeAngle,inactiveAngle,profile,description...) OPCODE_SERVOTURNOUT,V(id),OPCODE_PAD,V(pin),OPCODE_PAD,V(activeAngle),OPCODE_PAD,V(inactiveAngle),OPCODE_PAD,V(PCA9685::ProfileType::profile),
|
2021-08-28 18:39:48 +02:00
|
|
|
#define SET(pin) OPCODE_SET,V(pin),
|
2021-11-27 12:29:26 +01:00
|
|
|
#define SETLOCO(loco) OPCODE_SETLOCO,V(loco),
|
2022-01-03 13:43:06 +01:00
|
|
|
#define SIGNAL(redpin,amberpin,greenpin)
|
2022-03-18 14:46:07 +01:00
|
|
|
#define SIGNALH(redpin,amberpin,greenpin)
|
2021-08-03 23:12:25 +02:00
|
|
|
#define SPEED(speed) OPCODE_SPEED,V(speed),
|
2021-11-27 12:29:26 +01:00
|
|
|
#define START(route) OPCODE_START,V(route),
|
2021-08-03 23:12:25 +02:00
|
|
|
#define STOP OPCODE_SPEED,V(0),
|
|
|
|
#define THROW(id) OPCODE_THROW,V(id),
|
2021-11-27 12:29:26 +01:00
|
|
|
#define TURNOUT(id,addr,subaddr,description...) OPCODE_TURNOUT,V(id),OPCODE_PAD,V(addr),OPCODE_PAD,V(subaddr),
|
2021-11-22 12:10:26 +01:00
|
|
|
#define UNJOIN OPCODE_UNJOIN,0,0,
|
2021-08-03 23:12:25 +02:00
|
|
|
#define UNLATCH(sensor_id) OPCODE_UNLATCH,V(sensor_id),
|
2022-03-24 12:56:06 +01:00
|
|
|
#define VIRTUAL_TURNOUT(id,description...) OPCODE_PINTURNOUT,V(id),OPCODE_PAD,V(0),
|
2021-08-28 18:39:48 +02:00
|
|
|
#define WAITFOR(pin) OPCODE_WAITFOR,V(pin),
|
2021-09-06 13:27:21 +02:00
|
|
|
#define XFOFF(cab,func) OPCODE_XFOFF,V(cab),OPCODE_PAD,V(func),
|
|
|
|
#define XFON(cab,func) OPCODE_XFON,V(cab),OPCODE_PAD,V(func),
|
2021-08-03 23:12:25 +02:00
|
|
|
|
2021-11-27 12:29:26 +01:00
|
|
|
// Build RouteCode
|
2021-08-12 09:53:52 +02:00
|
|
|
const int StringMacroTracker2=__COUNTER__;
|
2021-11-27 12:29:26 +01:00
|
|
|
const FLASH byte RMFT2::RouteCode[] = {
|
|
|
|
#include "myAutomation.h"
|
|
|
|
OPCODE_ENDTASK,0,0,OPCODE_ENDEXRAIL,0,0 };
|
2021-08-03 23:12:25 +02:00
|
|
|
|
2021-09-09 11:12:27 +02:00
|
|
|
// Restore normal code LCD & SERIAL macro
|
2021-08-12 09:53:52 +02:00
|
|
|
#undef LCD
|
|
|
|
#define LCD StringFormatter::lcd
|
2021-09-09 11:12:27 +02:00
|
|
|
#undef SERIAL
|
|
|
|
#define SERIAL 0x0
|
2021-08-03 23:12:25 +02:00
|
|
|
#endif
|