##// END OF EJS Templates
Improved doxygen html output, improved documentation on some VHDL and C files.
Improved doxygen html output, improved documentation on some VHDL and C files.

File last commit:

r67:10679dca7fe8 default
r67:10679dca7fe8 default
Show More
AD7688_drvr.vhd
110 lines | 3.8 KiB | text/x-vhdl | VhdlLexer
Alexis
Migrating from GPLV2 to V3, and cleand some files. /!\ Unstable /!\
r19 ------------------------------------------------------------------------------
-- This file is a part of the LPP VHDL IP LIBRARY
-- Copyright (C) 2009 - 2010, Laboratory of Plasmas Physic - CNRS
--
-- This program is free software; you can redistribute it and/or modify
-- it under the terms of the GNU General Public License as published by
-- the Free Software Foundation; either version 3 of the License, or
-- (at your option) any later version.
--
-- This program is distributed in the hope that it will be useful,
-- but WITHOUT ANY WARRANTY; without even the implied warranty of
-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-- GNU General Public License for more details.
--
-- You should have received a copy of the GNU General Public License
-- along with this program; if not, write to the Free Software
-- Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
-------------------------------------------------------------------------------
Alexis
Minor changes
r38 -- Author : Alexis Jeandet
-- Mail : alexis.jeandet@lpp.polytechnique.fr
----------------------------------------------------------------------------
Alexis
Migrating from GPLV2 to V3, and cleand some files. /!\ Unstable /!\
r19 library IEEE;
use IEEE.STD_LOGIC_1164.ALL;
Alexis
Added ADS7886 VHD driver, improved APB_CNA and fixed AD7688 driver.
r20 library lpp;
use lpp.lpp_ad_conv.all;
use lpp.general_purpose.Clk_divider;
Alexis
Migrating from GPLV2 to V3, and cleand some files. /!\ Unstable /!\
r19
alexis
Improved doxygen html output, improved documentation on some VHDL and C files.
r67
--! \brief AD7688 driver, generates all needed signal to drive this ADC.
--!
--! \author Alexis Jeandet alexis.jeandet@lpp.polytechnique.fr
Alexis
Migrating from GPLV2 to V3, and cleand some files. /!\ Unstable /!\
r19 entity AD7688_drvr is
alexis
Improved doxygen html output, improved documentation on some VHDL and C files.
r67 generic(
ChanelCount :integer; --! Number of ADC you whant to drive
clkkHz :integer --! System clock frequency in kHz usefull to generate some pulses with good width.
);
Port(
clk : in STD_LOGIC; --! System clock
reset : in STD_LOGIC; --! System reset
smplClk : in STD_LOGIC; --! Sampling clock
DataReady : out std_logic; --! New sample available
smpout : out Samples_out(ChanelCount-1 downto 0); --! Samples
AD_in : in AD7688_in(ChanelCount-1 downto 0); --! Input signals for ADC see lpp.lpp_ad_conv
AD_out : out AD7688_out --! Output signals for ADC see lpp.lpp_ad_conv
);
Alexis
Migrating from GPLV2 to V3, and cleand some files. /!\ Unstable /!\
r19 end AD7688_drvr;
architecture ar_AD7688_drvr of AD7688_drvr is
alexis
Improved doxygen html output, improved documentation on some VHDL and C files.
r67 constant convTrigger : integer:= clkkHz*16/10000; --tconv = 1.6µs
Alexis
Migrating from GPLV2 to V3, and cleand some files. /!\ Unstable /!\
r19
alexis
Improved doxygen html output, improved documentation on some VHDL and C files.
r67 signal i : integer range 0 to convTrigger :=0;
signal clk_int : std_logic;
signal smplClk_reg : std_logic;
signal cnv_int : std_logic;
Alexis
Migrating from GPLV2 to V3, and cleand some files. /!\ Unstable /!\
r19
begin
Alexis
Added ADS7886 VHD driver, improved APB_CNA and fixed AD7688 driver.
r20 clkdiv: if clkkHz>=66000 generate
alexis
Improved doxygen html output, improved documentation on some VHDL and C files.
r67 clkdivider: Clk_divider
generic map(clkkHz*1000,60000000)
Port map( clk ,reset,clk_int);
Alexis
Added ADS7886 VHD driver, improved APB_CNA and fixed AD7688 driver.
r20 end generate;
alexis
Improved doxygen html output, improved documentation on some VHDL and C files.
r67 clknodiv: if clkkHz<66000 generate
nodiv: clk_int <= clk;
end generate;
AD_out.CNV <= cnv_int;
AD_out.SCK <= clk_int;
Alexis
Added ADS7886 VHD driver, improved APB_CNA and fixed AD7688 driver.
r20
Alexis
Migrating from GPLV2 to V3, and cleand some files. /!\ Unstable /!\
r19 sckgen: process(clk,reset)
begin
alexis
Improved doxygen html output, improved documentation on some VHDL and C files.
r67 if reset = '0' then
i <= 0;
cnv_int <= '0';
smplClk_reg <= '0';
elsif clk'event and clk = '1' then
if smplClk = '1' and smplClk_reg = '0' then
if i = convTrigger then
smplClk_reg <= '1';
i <= 0;
cnv_int <= '0';
else
i <= i+1;
cnv_int <= '1';
end if;
elsif smplClk = '0' and smplClk_reg = '1' then
smplClk_reg <= '0';
end if;
end if;
Alexis
Migrating from GPLV2 to V3, and cleand some files. /!\ Unstable /!\
r19 end process;
Alexis
Added ADS7886 VHD driver, improved APB_CNA and fixed AD7688 driver.
r20
spidrvr: AD7688_spi_if
alexis
Improved doxygen html output, improved documentation on some VHDL and C files.
r67 generic map(ChanelCount)
Port map(clk_int,reset,cnv_int,DataReady,AD_in,smpout);
Alexis
Added ADS7886 VHD driver, improved APB_CNA and fixed AD7688 driver.
r20
Alexis
Migrating from GPLV2 to V3, and cleand some files. /!\ Unstable /!\
r19 end ar_AD7688_drvr;
Alexis
Added ADS7886 VHD driver, improved APB_CNA and fixed AD7688 driver.
r20