[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Commit-gnuradio] r6884 - gnuradio/branches/developers/matt/u2f/models
From: |
matt |
Subject: |
[Commit-gnuradio] r6884 - gnuradio/branches/developers/matt/u2f/models |
Date: |
Tue, 13 Nov 2007 14:09:18 -0700 (MST) |
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;
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [Commit-gnuradio] r6884 - gnuradio/branches/developers/matt/u2f/models,
matt <=