--- cores/rc5/rtl/rc5.v | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) Hi Sebastien
this patch make my m1 works with the philips remote controller and the remote controller that adam sent to me.(other rc-5 remote controller :) the address value I got is excatly same with Adam's oscillograph http://downloads.qi-hardware.com/people/adam/m1/pic/button1_0x1c_wide.JPG diff --git a/cores/rc5/rtl/rc5.v b/cores/rc5/rtl/rc5.v index 6f48bae..217dff7 100644 --- a/cores/rc5/rtl/rc5.v +++ b/cores/rc5/rtl/rc5.v @@ -86,7 +86,7 @@ always @(posedge sys_clk) begin if(~rx_busy) begin // look for start bit if(rx2) begin // start bit found rx_busy <= 1'b1; - rx_count16 <= 4'd11; + rx_count16 <= 4'd13; rx_bitcount <= 4'd0; end end else begin -- 1.7.0.4 _______________________________________________ http://lists.milkymist.org/listinfo.cgi/devel-milkymist.org IRC: #milkymist@Freenode Twitter: www.twitter.com/milkymistvj Ideas? http://milkymist.uservoice.com
