Author: matt
Date: 2007-11-13 14:09:17 -0700 (Tue, 13 Nov 2007)
New Revision: 6884

Modified:
   gnuradio/branches/developers/matt/u2f/models/uart_rx.v
Log:
WIP


Modified: gnuradio/branches/developers/matt/u2f/models/uart_rx.v
===================================================================
--- gnuradio/branches/developers/matt/u2f/models/uart_rx.v      2007-11-13 
21:08:48 UTC (rev 6883)
+++ gnuradio/branches/developers/matt/u2f/models/uart_rx.v      2007-11-13 
21:09:17 UTC (rev 6884)
@@ -25,7 +25,7 @@
    always @(posedge byteclk)
      case(state)
        0 : 
-        if(~sr[1] & sr[0])  // found start bit
+        if(sr[1] & ~sr[0])  // found start bit
           state  <= 1;
        1, 2, 3, 4, 5, 6, 7, 8 :
         state <= state + 1;



_______________________________________________
Commit-gnuradio mailing list
[email protected]
http://lists.gnu.org/mailman/listinfo/commit-gnuradio

Reply via email to