diff options
author | Johnathan Corgan <johnathan@corganlabs.com> | 2015-06-14 09:19:03 -0700 |
---|---|---|
committer | Johnathan Corgan <johnathan@corganlabs.com> | 2015-06-14 09:19:03 -0700 |
commit | 7ee2f91d3c51498a6d1923fb47f47b882c9a77e5 (patch) | |
tree | 525e79df13a027722b88fc0f031696833fed46ec /grc/base/Constants.py | |
parent | a80edf4570d75f1325dce7e026e166956bb1db5f (diff) | |
parent | 91dd2fce59ba81d4dc22b9dcdc909211cafe9f5f (diff) |
Merge remote-tracking branch 'gnuradio-wg-grc/master_grcwg'
Diffstat (limited to 'grc/base/Constants.py')
-rw-r--r-- | grc/base/Constants.py | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/grc/base/Constants.py b/grc/base/Constants.py index efae0ecbb5..0c5116c604 100644 --- a/grc/base/Constants.py +++ b/grc/base/Constants.py @@ -38,3 +38,11 @@ DOMAIN_DTD = os.path.join(DATA_DIR, 'domain.dtd') GR_STREAM_DOMAIN = "gr_stream" GR_MESSAGE_DOMAIN = "gr_message" DEFAULT_DOMAIN = GR_STREAM_DOMAIN + +BLOCK_FLAG_THROTTLE = 'throttle' +BLOCK_FLAG_DISABLE_BYPASS = 'disable_bypass' + +# Block States +BLOCK_DISABLED = 0 +BLOCK_ENABLED = 1 +BLOCK_BYPASSED = 2 |