[Hackrf-dev] cpld - extern FPGA

Fabian Noeller fabian.noeller at gmail.com
Wed Feb 4 10:40:18 EST 2015


The P30 is pritty nice. I use 2x8 Pins for RX_I und RX_Q to foward it to an
external FPGA

If anyboy is intressed sent me a mail ;)

 process(host_clk_i)
    begin
        if rising_edge(host_clk_i) then -- vll falling_edge
            if codec_clk_i = '1' then
                -- I: non-inverted between MAX2837 and MAX5864
                data_to_host_o <= adc_data_i xor X"80";
                     rx_i <= adc_data_i xor X"80";
            else
                -- Q: inverted between MAX2837 and MAX5864
                data_to_host_o <= adc_data_i xor rx_q_invert_mask;
                     LET_Q <= adc_data_i xor rx_q_invert_mask;
                     LET_I <= rx_i;
            end if;
        end if;
    end process;
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <https://pairlist9.pair.net/pipermail/hackrf-dev/attachments/20150204/9a884e64/attachment.html>


More information about the HackRF-dev mailing list