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: SEQ Record Question |
From: | "Manoussakis, Adamandios via Tech-talk" <tech-talk at aps.anl.gov> |
To: | "Layne (US), William C" <william.c.layne at boeing.com>, "tech-talk at aps.anl.gov" <tech-talk at aps.anl.gov> |
Date: | Fri, 12 Mar 2021 23:40:00 +0000 |
It seems like strcmp works when it is placed in an if statement but not as shown below inside the when() when (strcmp(voltage, "STANDBY")==0) { /* turn light on */ light = 8; pvPut(light); } state light_on } From: Layne (US), William C <william.c.layne at boeing.com>
Including string.h in the top of your .st file should allow you to use `strcmp`: %%#include “string.h” William From: Tech-talk [mailto:tech-talk-bounces at aps.anl.gov]
On Behalf Of Manoussakis, Adamandios via Tech-talk
Hello, I am working on the sequencer record and wondering where to place conditionals, I was trying to do a string compare inside the when() but it did not want to compile. I see some examples in the documentation where they place a conditional in the when() block when (voltage > 2) { /* turn light on */ light = ON; pvPut(light);
} state light_on } But I have also seen where they have if statements inside of a when() with no check when () { if(strcmp(voltage, "STANDBY")==0){ /* turn light on */ light = 8; pvPut(light); } state light_on } I was hoping to do something like this when(strcmp(voltage, "STANDBY")==0){ } Thanks, Adam |