Quantcast
Channel: EngineerZone : Discussion List - Other Products
Viewing all 245 articles
Browse latest View live

ADIS16209CCCZ - INCLINOMETER

$
0
0

We have on regular basis the same complains for ADIS16209CCCZ.

 

The customers report as follows:

 

... these IC are shorted to GND as soon as they were soldered in place while using small programmable re-flow oven. ...


... 3 pcs of p/n 1607244 INCLINOMETER, ±1.7G, 3.3V, 16LGA but none of them worked. Two had a shorting inside VCC and GND - and the Dout signal was not working in the third one....


Does anybody has encountered more similar problems and what could be the reason why this happens?


Regards

 


ADA4571 sensing tooth of gear wheel

$
0
0

Hello,

 

Below is a figure copied from CN0332.

AMR sensor senses magnetic field. Gear wheel or rack is not a magnet. I wonder how magetic field is created from a metal as shown the figure?  Is a specific metal or  process required for creation of magnetic field?  If it is , could I get detailed information on that?

AMR.PNG

 

Best Regards,

Mack

AD8672 Open-Loop Gain and Phase Shift vs. Frequency & Output Impedance vs. Frequency Question?

$
0
0

Hi there,

 

  We are using the SPICE model of AD8672 to simulate the open-loop gain & phase shift vs. frequency & output impedance vs. frequency. It turns out to be quite different from the listed in data sheet. Attached is the test result for your information, thanks

 

Best Rgds,

Michael Chang

Supply voltage for temp sensor ADATE318

$
0
0

What is supply voltage (VDD_TERM) for temp sensor ADATE318. I did not find this information in the datasheet.

ADATE318 IBIS model

$
0
0

Hi ADIer,

 

Where can I find the IBIS model of ADATE318? I can not do simulation without it.

I can't find a suitable place to put this request, ADATE318 integrated DACs, maybe I can put it here.

 

Thanks in advance.

 

Jason

A series of questions about ADATE318

$
0
0

1. How to get the ibis model of the ADATE318?

2. What the difference between the pin PPMU_Sx and PMU_Sx? How to use these pins in application?

3. How to connect the kinds of GND in the application, such AGND, PGND, DGND, DUTGND, VREFGND.

4. Do you have EVM board of ADATE318 for reference?

Controlling digital potentiometer (AD5142) by Arduino UNO

$
0
0

Hi, I am trying to control digital potentiometer (AD5142) by Arduino UNO.

캡처.PNG
Here is the pin configuration of AD5142.

I connect SCLK pin to 13 pin of Arduino (serial clock pin), SDI pin to 11 pin of Arduino (MOSI pin) and SDO pin to 12 pin of Arduino (MISO pin).

SYNC pin was connected to digital output pin of Arduino.

And according to the data sheet of AD5142, I connected the RESET pin to V(LOGIC) pin because I don't want to use reset.

V(DD), A1 and A2 pin to 5V and V(SS) to ground.

And I used the Arduino code below,

 

------------------------------------------------

// inslude the SPI library:
#include <SPI.h>

// set pin 10 as the slave select for the digital pot:
const int slaveSelectPin = 8;

void setup() {
  // set the slaveSelectPin as an output:
   pinMode (slaveSelectPin, OUTPUT);
  // initialize SPI:
   SPI.begin();
   Serial.begin(9600);
}

void loop() {
//***********************************************************
int channel1 = 0;
/////////////////////
double voltage1 = 2;
/////////////////////
double level1 = voltage1 * 51;
digitalPotWrite(channel1, level1);

 

int channel2 = 1;
/////////////////////
double voltage2 = 2;
/////////////////////
double level2 = voltage2 * 51;
digitalPotWrite(channel2, level2);
}
//***********************************************************

void digitalPotWrite(int address, double value) {
   // take the SS pin low to select the chip:
   digitalWrite(slaveSelectPin,LOW);
   //  send in the address and value via SPI:
   SPI.transfer(address);
   SPI.transfer(value);
   // take the SS pin high to de-select the chip:
   digitalWrite(slaveSelectPin,HIGH);
}

------------------------------------------------

 

However, I cannot control the resistance of AD5142.

Can you help me?

What is TECGAIN of ADN8834 DS?

$
0
0

Hi,

 

I have a question about TEC controller ADN8834.

 

I can see an equation of f_0dB in DS at p18.

Can you explain what TECGAIN in it?

 

from Fig 35, 0dB should  be at 1/(2*pi*R_1*C_1). But f_0dB of equation has x(R_FB/(R_TH + R_x) - R_FB/R)xTECGAIN.

I assume the followings;

 

1. TECGAIN is a varied value from device itself. It can change by hot mode or cold mode.

2. When users think of PID Compensation, they can ignore x(R_FB/(R_TH + R_x) - R_FB/R)xTECGAIN. The part would be canceled as x1 or very tiny???


Is my assumption correct?

If not, could you explain what it is?


I would like to know

- What is TECGAIN? and how can it be led in calculation?

- Why is x(R_FB/(R_TH + R_x) - R_FB/R)xTECGAIN ignored in Fig 35?

 

Thank you for your help.


Difference between ADN8834CB-EVALZ and ADN8834MB-EVALZ

$
0
0

What is the difference between ADN8834CB-EVALZ and ADN8834MB-EVALZ? Do you have any additional information or datasheet for the eval kits?

HMC1048LC3B (MIXER 2 - 18 GHz)

$
0
0

Based on the  data sheets for HMC1048LC3B (MIXER 2 - 18 GHz), can i used VCO input power with 8.52dBm. Currently i doing simulation in ADS software, can i still used the data as provided for vco 9dBm input in data sheet in simulation.

AD5522 can not communicate via SPI?

$
0
0

Hi All:

     I have a AD5522 Evaluation Board,and it's work well on Evaluation Software 1.6.1.

     Now I want to use my STM32F103ZE to control the AD5522,but I can't communicate with AD5522 via SPI.

It's Evaluation Software timing,I want to read system control register,so I click READ SYSTEM CONTROL REGISTER ,and then, the  software will send 0x10000000 to AD5522,and AD5522 will return 0x00000020 to me, it's work well in anytime.

 

Write 0x10000000

a.JPG

Read 0x000020 (Default value when AD5522 power on)

b.JPG

 

Now,I want to use my STM32F103ZE to read system control register,so I connect STM32F103ZE and AD5522,and remove the LK9 to disable USB function.As show below picture.

ad55.png

The first time,STM32F103ZE will send the command 0x10000000 to AD5522,that meaning read system control register

c.JPG

And then,STM32F103ZE will send 0xFFFFFF try to read data from AD5522, but the Busy pin goes low when 19th rising clock edge of SPI-CLOCK? Even so the result is 0x000020,that is true.

d.JPG

But the second time,STM32F103ZE send the command 0x10000000 to AD5522 again,the Busy pin goes low when 5th rising clock edge of SPI-CLOCK and 31th rising clock edge.

e.JPG

And then ,result is 0x000000,that's wrong(0x000020 is true).

f.JPG

Simulation SPI Code:

uint32_t AD5522_SPI(uint16_t bits, uint32_t dat)

{

    uint32_t Recvice = 0;

    uint8_t i;

   

    AD5522_CS_L;

    AD5522_Delay(2);

    //bits = 32 when write data to AD5522 and bits = 24 when read data from AD5522

    for(i = 0; i < bits; i++) 

    {

       

        if(dat & 0x80000000)    //MSB

        {

            AD5522_MOSI_H;

           

        }

        else

        {

            AD5522_MOSI_L;

        }

        //CLOCK High

        AD5522_CLK_H;

        dat <<= 1;

        Recvice <<= 1;

        AD5522_Delay(1);

      

        AD5522_CLK_L;

        if(AD5522_MISO)  //Read data when CLOCK falling edge.

        {

            Recvice++;

        }

        AD5522_Delay(3)

    }

    AD5522_Delay(1);

    AD5522_CS_H;

    AD5522_CLK_L;     //Idle time,CLOCK is low

    AD5522_MOSI_L;    //Idle time,MOSI is low

    return Recvice;

}

 

This problem puzzle me three days,can you help me?

sorry for my bad English.

thanks.

AD5520:trouble with MEASOUT voltage range

$
0
0

20151020151131.png

HI this is my sch of ad5520. the pin 64(CLL) vee_3v3 is -3.3V and pin 63(CLH) vcc_3v3 is +3.3v.

I change the pin 26(FIN) voltage , the pin 58 (MEASOUT) should from -3.3V to + 3.3V . but the pin 58 (MEASOUT)  is -0.256V to 3.3V.

the R74 is 100K. and in force current mode

why the pin 58 (MEASOUT)  is -0.256V to 3.3V.

ad5522-output voltage is a Sine wave when Fin is a constant

$
0
0

Dear Sir/Madam.

 

I am using a extent range. A  external amplier is connected to Exfoh.

output voltage is a Sine wave when Fin is a constant. The frequence is 10K Hz.

VREF is confirm as 5V

The supplies is +/-15V.

How to solve the problem?

 

Thanks.

ADN8331 H Bridge circuit dead zone issue

$
0
0

        Hi, everybody,I am going to use the ADN8831 to control the DFB Laser temperture,and I have a question need you to help me to solve,which is the H Bridge driver circuit that make up of the mosfet.

       As you know, H Bridge driver circuit has the positive and negative deriction to drive the TEC in turn,the P-mosfet and the N-mosfet are controlled by the output of PWM and Linear AMP ,but the problem is when the circuit change the state from the positive to negative deriction,there is a dead zone exist in seconds(maybe decide by mosfet),if I want to eliminate this phenomenon,what I should do?Could you suggest some nice ways improve or solve the issue?Besides,if I replace the mosfet by the NPN transistor which controlled by the linear AMP part,is it will be better than the mosfet? Look forward to your reply,thanks!

Regarding over and under voltage protection for 1V supply line

$
0
0

Hello everyone,

I am kishore. I need to provide over and under voltage protection for 1V supply line. I searched for zener diode having voltage rating of 1V. But I have not found any device. Please suggest any method to provide UV and OV for 1V line.

 

Regards,

T.Kishore


ADA4571, min and max pitch between two poles when linear config.

$
0
0

Hi,

 

Regarding to AMR angle sensor ADA4571 when used in linear configuration, I would like to know,

a) Minimum and Maximum pitch between a north and south pole which available to be used.

b) Accuracy data when used above minimum and maximum putch in above question a).

 

I have attached following picture of image written on white board to avoid misreadings.

⊿Lp is the pitch I'm asking. ⊿Lz is distance between sensor and the magnet.

Magnet and Sensor.jpg

 

Regards,

LVPECL swing converter

$
0
0

Is there a device which would accept differential LVPECL signal and convert it to differential signal of 6 v p-p or higher...

I am planning to adopt ADN2526 since it has open collector outputs...

My application requires such device with maximum propagation delay of 50ps.

The ADN2526 specs do not list propagation delay...

Please advice,

 

Sincerely,

 

Mathew Orman

Question about test setting of ADN8834

$
0
0

Hello,

 

My customer wants to confirm the performance of ADN8834 using EVM first.

And they are trying to test a ADN8834 EVM and TOSA module with Thermoelectric Cooler (from NeoPhotonics.)

 

During the test, they say that they can't confirm TEC currents, they can confirm only small change of TEC currents occasionally.

So they request how to confirm the operation of ADN8834 and how to set up ADN8834 at temperature test.

(They use plat cable for connecting between ADN8834 in EVM and TEC in TOSA module.)

 

Would you advise me how to test ADN8834 in EVM ?

 

If you have any questions, please let me know.

 

Rgerads,

Se-woong

Hi , Compilation issue in Cross Core Embedded Studio

$
0
0

I am facing one strange issue with CCES .. The issue is if I open the project and bulid am getting no errors but if I open some file am seeing some errors like "CD_RV cannot be resolved". But that MACRO is defined in a header file that is even included ..... And also this is just the example project and I have not added any changes ................

 

 

 

Thanks for help ..

Thanga Raj

ADN8834, Amplifers

$
0
0

Hallo,

 

are the two chopper stabilized amplifers inside the ADN8834 on while the chip is in standby. I plan implementing a digital control loop arournd the AD8834. It want to use one of the amplifiers for buffering the voltage across the thermistor. But I want to measure temperature without activation the power stage.

 

Yours,

 

Peter Hintenaus

Viewing all 245 articles
Browse latest View live


<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>