Esegue un file presente in flash. contenente uno o una lista di comandi dispostivo.
Tipica è la richiesta di esecuzione forzata del file lostreg.stp.
Sintassi |
EXEBAT filename |
---|---|
filename |
Nome del file comandi da eseguire completo di path (percorso sulla CF) |
Note |
Il file comandi deve sempre terminare con un ritorno a capo, altrimenti l'ultima riga non viene eseguita |
Esempio
da shell rde3 exebat /fa/lostreg.stp |
Esempio
Da programma R3 select (rCmdLostreg) case 1 StrCmd = "UAR /FA/LOSTREG.STP" srAswCmd = command(StrCmd) rCmdLostreg = 0 break case 2 StrCmd = "EXEBAT /FA/LOSTREG.STP" srAswCmd = command(StrCmd) rCmdLostreg = 0 break case 4 StrCmd = "UAR /FB/RICETTE.STP" srAswCmd = command(StrCmd) rCmdLostreg = 0 break case 8 StrCmd = "EXEBAT /FB/RICETTE.STP" srAswCmd = command(StrCmd) rCmdLostreg = 0 break default rCmdLostreg = 0 end_select |