commit-gnuradio
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Commit-gnuradio] r4452 - in gnuradio/branches/developers/trondeau/digit


From: trondeau
Subject: [Commit-gnuradio] r4452 - in gnuradio/branches/developers/trondeau/digital-wip2/gnuradio-core/src/python/gnuradio: blksimpl blksimpl2
Date: Sun, 11 Feb 2007 18:21:48 -0700 (MST)

Author: trondeau
Date: 2007-02-11 18:21:48 -0700 (Sun, 11 Feb 2007)
New Revision: 4452

Modified:
   
gnuradio/branches/developers/trondeau/digital-wip2/gnuradio-core/src/python/gnuradio/blksimpl/d8psk.py
   
gnuradio/branches/developers/trondeau/digital-wip2/gnuradio-core/src/python/gnuradio/blksimpl/qam16.py
   
gnuradio/branches/developers/trondeau/digital-wip2/gnuradio-core/src/python/gnuradio/blksimpl/qam256.py
   
gnuradio/branches/developers/trondeau/digital-wip2/gnuradio-core/src/python/gnuradio/blksimpl/qam64.py
   
gnuradio/branches/developers/trondeau/digital-wip2/gnuradio-core/src/python/gnuradio/blksimpl/qam8.py
   
gnuradio/branches/developers/trondeau/digital-wip2/gnuradio-core/src/python/gnuradio/blksimpl2/d8psk.py
Log:
hidding modulations that are not ready from the modulation_utils block

Modified: 
gnuradio/branches/developers/trondeau/digital-wip2/gnuradio-core/src/python/gnuradio/blksimpl/d8psk.py
===================================================================
--- 
gnuradio/branches/developers/trondeau/digital-wip2/gnuradio-core/src/python/gnuradio/blksimpl/d8psk.py
      2007-02-12 01:19:41 UTC (rev 4451)
+++ 
gnuradio/branches/developers/trondeau/digital-wip2/gnuradio-core/src/python/gnuradio/blksimpl/d8psk.py
      2007-02-12 01:21:48 UTC (rev 4452)
@@ -359,5 +359,6 @@
 #
 # Add these to the mod/demod registry
 #
-modulation_utils.add_type_1_mod('d8psk', d8psk_mod)
-modulation_utils.add_type_1_demod('d8psk', d8psk_demod)
+# NOT READY TO BE USED YET -- ENABLE AT YOUR OWN RISK
+#modulation_utils.add_type_1_mod('d8psk', d8psk_mod)
+#modulation_utils.add_type_1_demod('d8psk', d8psk_demod)

Modified: 
gnuradio/branches/developers/trondeau/digital-wip2/gnuradio-core/src/python/gnuradio/blksimpl/qam16.py
===================================================================
--- 
gnuradio/branches/developers/trondeau/digital-wip2/gnuradio-core/src/python/gnuradio/blksimpl/qam16.py
      2007-02-12 01:19:41 UTC (rev 4451)
+++ 
gnuradio/branches/developers/trondeau/digital-wip2/gnuradio-core/src/python/gnuradio/blksimpl/qam16.py
      2007-02-12 01:21:48 UTC (rev 4452)
@@ -201,5 +201,6 @@
 #
 # Add these to the mod/demod registry
 #
-modulation_utils.add_type_1_mod('qam16', qam16_mod)
+# NOT READY TO BE USED YET -- ENABLE AT YOUR OWN RISK
+#modulation_utils.add_type_1_mod('qam16', qam16_mod)
 #modulation_utils.add_type_1_demod('qam16', qam16_demod)

Modified: 
gnuradio/branches/developers/trondeau/digital-wip2/gnuradio-core/src/python/gnuradio/blksimpl/qam256.py
===================================================================
--- 
gnuradio/branches/developers/trondeau/digital-wip2/gnuradio-core/src/python/gnuradio/blksimpl/qam256.py
     2007-02-12 01:19:41 UTC (rev 4451)
+++ 
gnuradio/branches/developers/trondeau/digital-wip2/gnuradio-core/src/python/gnuradio/blksimpl/qam256.py
     2007-02-12 01:21:48 UTC (rev 4452)
@@ -201,5 +201,6 @@
 #
 # Add these to the mod/demod registry
 #
-modulation_utils.add_type_1_mod('qam256', qam256_mod)
+# NOT READY TO BE USED YET -- ENABLE AT YOUR OWN RISK
+#modulation_utils.add_type_1_mod('qam256', qam256_mod)
 #modulation_utils.add_type_1_demod('qam256', qam256_demod)

Modified: 
gnuradio/branches/developers/trondeau/digital-wip2/gnuradio-core/src/python/gnuradio/blksimpl/qam64.py
===================================================================
--- 
gnuradio/branches/developers/trondeau/digital-wip2/gnuradio-core/src/python/gnuradio/blksimpl/qam64.py
      2007-02-12 01:19:41 UTC (rev 4451)
+++ 
gnuradio/branches/developers/trondeau/digital-wip2/gnuradio-core/src/python/gnuradio/blksimpl/qam64.py
      2007-02-12 01:21:48 UTC (rev 4452)
@@ -201,5 +201,6 @@
 #
 # Add these to the mod/demod registry
 #
-modulation_utils.add_type_1_mod('qam64', qam64_mod)
+# NOT READY TO BE USED YET -- ENABLE AT YOUR OWN RISK
+#modulation_utils.add_type_1_mod('qam64', qam64_mod)
 #modulation_utils.add_type_1_demod('qam16', qam16_demod)

Modified: 
gnuradio/branches/developers/trondeau/digital-wip2/gnuradio-core/src/python/gnuradio/blksimpl/qam8.py
===================================================================
--- 
gnuradio/branches/developers/trondeau/digital-wip2/gnuradio-core/src/python/gnuradio/blksimpl/qam8.py
       2007-02-12 01:19:41 UTC (rev 4451)
+++ 
gnuradio/branches/developers/trondeau/digital-wip2/gnuradio-core/src/python/gnuradio/blksimpl/qam8.py
       2007-02-12 01:21:48 UTC (rev 4452)
@@ -201,5 +201,6 @@
 #
 # Add these to the mod/demod registry
 #
-modulation_utils.add_type_1_mod('qam8', qam8_mod)
+# NOT READY TO BE USED YET -- ENABLE AT YOUR OWN RISK
+#modulation_utils.add_type_1_mod('qam8', qam8_mod)
 #modulation_utils.add_type_1_demod('qam8', qam8_demod)

Modified: 
gnuradio/branches/developers/trondeau/digital-wip2/gnuradio-core/src/python/gnuradio/blksimpl2/d8psk.py
===================================================================
--- 
gnuradio/branches/developers/trondeau/digital-wip2/gnuradio-core/src/python/gnuradio/blksimpl2/d8psk.py
     2007-02-12 01:19:41 UTC (rev 4451)
+++ 
gnuradio/branches/developers/trondeau/digital-wip2/gnuradio-core/src/python/gnuradio/blksimpl2/d8psk.py
     2007-02-12 01:21:48 UTC (rev 4452)
@@ -402,5 +402,6 @@
 #
 # Add these to the mod/demod registry
 #
-modulation_utils.add_type_1_mod('d8psk', d8psk_mod)
-modulation_utils.add_type_1_demod('d8psk', d8psk_demod)
+# NOT READY TO BE USED YET -- ENABLE AT YOUR OWN RISK
+#modulation_utils.add_type_1_mod('d8psk', d8psk_mod)
+#modulation_utils.add_type_1_demod('d8psk', d8psk_demod)





reply via email to

[Prev in Thread] Current Thread [Next in Thread]