modificata effettiva lettura parametri + update 1.13

This commit is contained in:
Samuele E. Locatelli
2017-11-02 17:31:33 +01:00
parent 237837bbcf
commit e014aeb4cc
4 changed files with 25 additions and 26 deletions
+14 -16
View File
@@ -278,6 +278,8 @@ namespace IOB_WIN
public override string getPrgName()
{
string prgName = "";
// vecchia versione con prg corrente...
#if false
CncLib.Focas1.ODBEXEPRG answ = FANUC_ref.getPrgName();
try
{
@@ -289,23 +291,19 @@ namespace IOB_WIN
catch (Exception exc)
{
lg.Error(exc, "Errore in getPrgName");
}
// se in test butto fuori nUOVA versione prgName...
if (utils.CRB("enableNewFunc"))
}
#endif
// recupero NUOVO prgName...
try
{
// recupero NUOVO prgName...
try
{
// recupero nome programma MAIN
string nomeMain = utils.purgedChar2String(FANUC_ref.getPrgNameMain());
// trimmo path del programma, ovvero "CNCMEMUSERPATH1"
nomeMain = nomeMain.Replace(utils.CRS("basePrgMemPath"), "");
lg.Info("PROG_MAIN: {0}", nomeMain);
}
catch (Exception exc)
{
lg.Error(string.Format("Eccezione in recupero PRG NAME MAIN:{0}{1}", Environment.NewLine, exc));
}
// recupero nome programma MAIN
prgName = utils.purgedChar2String(FANUC_ref.getPrgNameMain());
// trimmo path del programma, ovvero "CNCMEMUSERPATH1"
prgName = prgName.Replace(utils.CRS("basePrgMemPath"), "");
}
catch (Exception exc)
{
lg.Error(string.Format("Eccezione in recupero PRG NAME MAIN:{0}{1}", Environment.NewLine, exc));
}
return prgName;
}
+8 -8
View File
@@ -1,16 +1,16 @@
-------------------------------------
- 2017.10.19
-------------------------------------
.. - da testare ora invio URL a MoonPro
OK - ALIVE
OK - ENABLED
- INPUT
- FARE lettura VERA da FANUC almeno della bitmap
- fare gestione configurabile lettura FANUC
.. - fare gestione come rPI-IOB, ovvero
OK - da testare ora invio URL a MoonPro
OK - ALIVE
OK - ENABLED
OK - INPUT
OK - FARE lettura VERA da FANUC almeno della bitmap
OK - fare gestione come rPI-IOB, ovvero
OK - gestione QUEUE eventi
OK - salvataggio su file dello storico eventi rilevati
OK - gestione dei segnali ballerini (BITMASK!)
- fare gestione configurabile lettura FANUC
- fare integrazione ALTRI varori FANUC, tra cui
- allarmi
- load/speed
@@ -26,7 +26,7 @@ FINIRE SISTEMAZIONE JETCO:
- install servers
- install DB
- conf acquisitore togliendo parti abbozzate x contapezzi/fineciclo
- part program name
OK - part program name MAIN con nuova funzione
CREARE NUOVO SW (o configurazione? o ramo alternativo a develop?) x mapping INIZIALE della macchina... ad esempio
- si colelga a ns server
+1
View File
@@ -16,6 +16,7 @@
<li>Inserimento invio FluxLog x parametri estesi (es SysEx, ProgName,...)</li>
<li>FIX visualizzazione dati FluxLog e URL inviati</li>
<li>FIX MAIN program da FANUC (non il current)</li>
<li>Inserita modalità DUMP memoria (iniziale full + periodica)</li>
</ul>
</li>
<li>
Vendored
+2 -2
View File
@@ -15,8 +15,8 @@ pipeline {
/* calcolo numero versione... diverso x branch MASTER/DEVELOP */
script {
withEnv(['NEXT_BUILD_NUMBER=83']) {
env.versionNumber = VersionNumber(versionNumberString : '1.12.${BUILD_DATE_FORMATTED, "yyMM"}.${BUILDS_ALL_TIME}', projectStartDate : '2006-01-01', skipFailedBuilds: true)
// env.versionNumber = VersionNumber(versionNumberString : '1.12.${BUILD_DATE_FORMATTED, "yyMM"}.${BUILDS_ALL_TIME}', projectStartDate : '2006-01-01', skipFailedBuilds: true, overrideBuildsAllTime: '${NEXT_BUILD_NUMBER}')
env.versionNumber = VersionNumber(versionNumberString : '1.13.${BUILD_DATE_FORMATTED, "yyMM"}.${BUILDS_ALL_TIME}', projectStartDate : '2006-01-01', skipFailedBuilds: true)
// env.versionNumber = VersionNumber(versionNumberString : '1.13.${BUILD_DATE_FORMATTED, "yyMM"}.${BUILDS_ALL_TIME}', projectStartDate : '2006-01-01', skipFailedBuilds: true, overrideBuildsAllTime: '${NEXT_BUILD_NUMBER}')
env.APP_NAME = 'MAPO-IOB-WIN'
}
}