1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 <2021> 2022 2023 2024 2025 | Index | 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 <2021> 2022 2023 2024 2025 |
<== Date ==> | <== Thread ==> |
---|
Subject: | RE: motor record - how to turn off asyn error messages for a single motor |
From: | "Pearson, Matthew R. via Tech-talk" <tech-talk at aps.anl.gov> |
To: | "Luchini, Kristi L." <luchini at slac.stanford.edu> |
Cc: | "tech-talk at aps.anl.gov" <tech-talk at aps.anl.gov>, "Balakrishnan, Namrata" <namrata at slac.stanford.edu>, "Oven, Ziga" <zoven at slac.stanford.edu> |
Date: | Tue, 2 Mar 2021 17:33:39 +0000 |
Hi, Since the messages are coming from an Asyn driver, they are likely using the asynPrint function which uses a mask to control which messages are printed for that particular Asyn port. It’s possible to control this at the database level by
using the asynRecord. If you load one of these and connect it to the Asyn port in question, you can use the trace control fields to turn off and on error messages: https://epics.anl.gov/modules/soft/asyn/R4-38/asynRecord.html#TraceControlFields Depending on the driver, you may need a separate record for each Asyn address.
Cheers, Matt From: Tech-talk <tech-talk-bounces at aps.anl.gov> On Behalf Of
Luchini, Kristi L. via Tech-talk Hello, We use the asyn to communicate to motor controllers in production user area, where motors may be unplugged due to the users need. For other application where we use asyn we use the SDIS/DISV field of a PV to set an asyn device online/offline,
thereby disabling messages from spewing to the console port. However, when the motor record is used, for a asyn motor controller it’s unclear how to turn off messages for a single device. Is there a method do this this, or is the only solution to shut off
all messages to the console port? Regards, -Kristi record(bo, "$(ps):CommLink") { field(DESC, "Communication Link Status") field(ZNAM, "Offline") field(ONAM, "Online") field(FLNK, "$(ps):InitCommLinkCalc") } record(fanout, "$(ps):UpdateFast") { # Process State before Curr since State may change Curr limits. field(DESC, "Fast Update") field(LNK1, "$(ps):Volt.PROC") field(LNK2, "$(ps):State.PROC") field(LNK3, "$(ps):VoltSetptRbck.PROC") field(LNK4, "$(ps):CurrSetptRbck.PROC") field(LNK5, "$(ps):Curr.PROC") field(LNK6, "$(ps):CurrAct.PROC") field(SCAN, ".5 second") field(DISV, "0") field(SDIS, "$(ps):CommLink") field(ASG, "Internal") } record(fanout, "$(ps):UpdateSlow") { field(DESC, "Slow Update") field(LNK1, "$(ps):StatusEvent.PROC") field(LNK2, "$(ps):OperStatus.PROC") field(LNK3, "$(ps):FaultStatus.PROC") field(LNK4, "$(ps):FaultEvent.PROC") field(SCAN, "2 second") field(DISV, "0") field(SDIS, "$(ps):CommLink") field(ASG, "Internal") } 2021/03/02 08:29:30.419 Pico8742Driver:poll(): Communication Error 2021/03/02 08:29:30.429 Pico8742Driver:Pico8742::writeReadController(): error, status=3 2021/03/02 08:29:30.429 Pico8742Driver:poll(): Communication Error 2021/03/02 08:29:30.439 Pico8742Driver:Pico8742::writeReadController(): error, status=3 2021/03/02 08:29:30.439 Pico8742Driver:poll(): Communication Error 2021/03/02 08:29:30.449 Pico8742Driver:Pico8742::writeReadController(): error, status=3 2021/03/02 08:29:30.449 Pico8742Driver:poll(): Communication Error |