Quantcast
Channel: Forums - Recent Threads
Viewing all 262198 articles
Browse latest View live

INA333: capacitive load capability - dealing with capacitances around 1nF

$
0
0

Part Number:INA333

INA333 has relatively CL capacitance - datasheet states CL=500pF.

I've found that using 1n - even with serial resistor of 1k doesn't always lead to stable output. Some parts show oscillations and some not - it's hard to tell.

I've tested several serial resistor values but when some parts were stable with this 1n/1k setup - other were oscillating even with 1n/4k7.

I'd rather not to use such high resistances in my application so the question arises - what distribution of stability I should expect.
The output is at 1,2V at it's max (that's the reference value for AD7706 converter in my application).

For the parts that tend to oscillate at 1n/1k setup, I've tested limiting the CL and I've found that I'd had to go even below 300pF.
That is a bit too much reduction for me (looking at the AD converter requirements).

So my question is - what solution I could use to be sure that my circuit will not oscillate at some combination of input signal/temperature ?


AWR1243: Transmitter Amplitude Noise

$
0
0

Part Number:AWR1243

Dear Sir/Madame,

Please can you let me know what the transmitter amplitude noise (-145dBc/Hz) given in section 5.7 of the the AWR1243 datasheet refers to?  Is this boradband thermal (AWGN) noise at the output of the transmitter?  Could you let me know how the transmitter amplitude noise varies with transmitter output level and what transmit power level gives -145dBc/Hz?

Thank you in advance for your help with this matter.

Best regards

Jonathan

BQ25898CEVM-730: BQ25898CEVM-730 with EV2300 : "Device ACK Error"

$
0
0

Part Number:BQ25898CEVM-730

Hi,

I am trying to evaluate BQ25898 IC using EVM and EV2300. I connected both EV2300 and BQ25898EVM as directed in BQ25898EVM user's guide but on battery management studio (tool) i see "Device ACK Error" and I nothing works (can't read registers and no changes in voltage/current values).

I have powered the EVM using a 5V, 2A wall adapter and connected this to J1 (VBUS and GND). I am using a 3050mAh battery, battery voltage is 3.9V, connected battery to J4 (BAT and GND). Jumper positions are as suggested in EVM user's guide and I am using Battery Management Studio v1.3.54.1.

Please suggest if I am doing something wrong or missed something.

DRA648: where can i found the IBIS file for J4(DRA648)

$
0
0

Part Number:DRA648

Hi All,

Customer want to do the TDR simulation of USB trace layout.

where can i find the IBIS file of J4(DRA648)?

Regards

Joe

AM3358: Setting GMII1 pins to GPIO

$
0
0

Part Number:AM3358

Hi,

By default on am335x-evmsk device tree has GMII1 pins set up for ethernet.

We made a custom board and intend to use these pins as GPIOs.

I tried setting up these pins like buttons are in device tree but trying to change state does not seem to work.

I disabled the ethernet bits in the device tree so these pins are not used anywhere else.

The pins in particular are GPIO3_9 and GPIO0_28.

The device tree entry:

led@3 {
label = "test_gpio_1";
gpios = <&gpio3 9 GPIO_ACTIVE_HIGH>;
default-state = "off";
};

led@4 {
label = "test_gpio_2";
gpios = <&gpio0 28 GPIO_ACTIVE_HIGH>;
default-state = "off";
};

Is there anything else ethernet related that can prevent me from using these as GPIOs?

Kind regards,

Ugnius

CC3220: Serial Flash Programmer recommendations

$
0
0

Part Number:CC3220

Hi,

We would like to be able to program the serial flash (we are using the MX25R3235FM1IL0) after assembly on board, using an external SPI programmer. Could anyone recommend a suitable programmer we can use?

Thanks,

Meenal

CCS/TMS320F28377S: CCS

$
0
0

Part Number:TMS320F28377S

Tool/software: Code Composer Studio

Hello,

I am using CCS V7 on windows 10

I have created one library and it works perfect. but when i link that library to main source file, i am getting error #1965: cannot open source file.


In compiler option i added path of that header file but not working.

(I have created library in C++).

 following are some  screenshots.

DS100MB203: DS100MB203+TLK10002 vs. FPGA

$
0
0

Part Number:DS100MB203

Dear Sir/Ms.

I'm sorry to trouble you. I'm at home in SMPS not in Interface.

This project for 10G CPRI's media converter and needs the following functions:

1. 10G 8B / 10B SERDES

2. Collecting of coding violation

Currently each PCBA must with 2 rails and needs 6 SERDES,

Customer found that TI solution be TLK10002 x 4 pcs with DS100MB203 x 2 pcs, The other available FPGA solutions are:

1. XILINX Kintex-7 XC7K70C, and

2. Altera Cyclone 10 10CX085

The price is about 60 ~ 80 USD,

We prefer to use TI solution and hope TI could offer better price to support this project. Otherwise, the project will be difficult under the conditions of price competition,

At present we see TLK10232 and TLK10002 are function equivalent,

However, even the price of TLK10232 is lower but we cannot use it because TLK10232 does not support 10G 8B / 10B decoding.

Customer’s design don’t need re-driver(fan out) function. The optical device is very close to TLK10002. Could you please give me some advice about the other device?


CCS/TM4C123GH6PM: GPIO Interrupt

$
0
0

Part Number:TM4C123GH6PM

Tool/software: Code Composer Studio

Hi.
I am going to use 2 Switches ( PF0 and PF4) as a GPIO Interrupt. When SW1 pressed, turn RED on and when SW2 pressed, turn BLUE on.

Below is my code:

#include <stdint.h>
#include <stdbool.h>
#include "inc/hw_memmap.h"
#include "inc/hw_types.h"
#include "driverlib/sysctl.h"
#include "driverlib/gpio.h"
#include "inc/hw_ints.h"
#include "driverlib/interrupt.h"
#include "Unlock_PF0/unlock_PF0.h"
uint8_t SW1_Flag,SW2_Flag;
void SW1_ISR(void);
void SW2_ISR(void);

//------------------------------------------------------
void SW1_ISR(void)
    {
    GPIOIntClear(GPIO_PORTF_BASE, GPIO_INT_PIN_4);//Clear Flag Interrupt on PF4
    SW1_Flag=1;//Set Flag to indicate SW1 is pressed
    }
void SW2_ISR(void)
    {
    GPIOIntClear(GPIO_PORTF_BASE, GPIO_INT_PIN_0);//Clear Flag Interrupt onf PF0
    SW2_Flag=1;//Set Flag to indicate SW2 is pressed
    }

//-----------------------------------------------------

int main(void)
{
    SysCtlClockSet(SYSCTL_SYSDIV_5|SYSCTL_USE_PLL|SYSCTL_XTAL_16MHZ|SYSCTL_OSC_MAIN);
    SysCtlPeripheralEnable(SYSCTL_PERIPH_GPIOF);
    GPIOPinTypeGPIOOutput(GPIO_PORTF_BASE, GPIO_PIN_1|GPIO_PIN_2|GPIO_PIN_3);
    GPIOPinWrite(GPIO_PORTF_BASE, GPIO_PIN_1| GPIO_PIN_2| GPIO_PIN_3,0);
    UnlockPF0(GPIO_PORTF_BASE,GPIO_PIN_0);
    GPIOPinTypeGPIOInput(GPIO_PORTF_BASE, GPIO_PIN_0|GPIO_PIN_4);
    GPIOPadConfigSet(GPIO_PORTF_BASE, GPIO_PIN_0|GPIO_PIN_4, GPIO_STRENGTH_8MA, GPIO_PIN_TYPE_STD_WPU);
    GPIOIntTypeSet(GPIO_PORTF_BASE, GPIO_PIN_0|GPIO_PIN_4, GPIO_FALLING_EDGE);

    GPIOIntRegister(GPIO_PORTF_BASE,&SW2_ISR);//Register for interrupt on PF0
    GPIOIntEnable(GPIO_PORTF_BASE, GPIO_INT_PIN_0);

    GPIOIntRegister(GPIO_PORTF_BASE,&SW1_ISR);
    GPIOIntEnable(GPIO_PORTF_BASE, GPIO_INT_PIN_4);//Register for interrupt for PF4

    IntEnable(INT_GPIOF);
    IntMasterEnable();
while(1)
    {
    GPIOPinWrite(GPIO_PORTF_BASE, GPIO_PIN_1|GPIO_PIN_2,0);
    if(SW1_Flag)// if SW1 is pressed, clear Flag, turn LED RED on.
    {
        SW1_Flag=0;
        GPIOPinWrite(GPIO_PORTF_BASE, GPIO_PIN_1,0x02);
        SysCtlDelay(4000000);
    }
    if(SW2_Flag)// if SW2 is pressed, clear Flag, turn LED BLUE on.
    {
        SW2_Flag=0;
        GPIOPinWrite(GPIO_PORTF_BASE, GPIO_PIN_2,0x04);
        SysCtlDelay(4000000);
    }
    }
}


It doesn't work, but when I commented one of two line GPIOIntRegister(GPIO_PORTF_BASE,&SW1_ISR), it works.

Please help me.

MSP430F123: JTAG ID returned

$
0
0

Part Number:MSP430F123

I'm debugging a MSP430F123 that does not want to program.  Fist step was to look at the fuse check step and that seems to be ok.  Next step was to check the returned JTAG_ID.  The value (from SLAU320AB pg 64) should be 0x89 (binary pattern 10001001)  but the returned value is 0x91 as shown below  (MSB is the last bit as described in Fig 1-3 of SLAU320AB pg 9).  Could someone offer some insight here?  I could be doing something wrong but I can't see it.

Trinamic TMC2130-LA-T replacement

$
0
0

hi all,

I'm looking for a replacement of the part in subject.

I looked at the DRV8825 and DRV8841, but I hope you can provide a better advice.

thanks a lot in advance

KR

Vincenzo

CC2531USB-RD: SmartRF Packet Sniffer no longer capturing IEEE 802.15.4 MAC and ZigBee 2007/PRO packets

$
0
0

Part Number:CC2531USB-RD

When I start the scan the "Select capturing device" goes blank and no packets are displayed.

Device had been working well for months.

Re-flashed the CC2531 with the sniffer image but it still did not work.

Have been working with Ubiqua utility as well. The Ubiqua protocol analyzer only shows Beacon Requests.

CD54AC157 - Need IBIS Model

$
0
0

Hello,

We have a customer requesting an IBIS model for this device. Could someone steer us in the right direction for this?

Thanks,

LMZ12001EXT: LMZ12001EXT lower operating temperature clarification

$
0
0

Part Number:LMZ12001EXT

Please can you clarify the low temperature operating range.

Tc states -55degC

Page 26 of the datasheet states -40degC

The temperature in the 'Order Now' tab states -55degC.

I am assuming it is a typo on the datasheet, both Tc and Ta should be -55degC?

Thanks....

CC2541: Bonded link - how to tell that authentication and encryption are done after reconnection

$
0
0

Part Number:CC2541

Hello, 

In my application, I need to 'push' a stored data as fast as possible, once a link is (re)connected.

With bonded link - what would be the best way to tell that upon reconnection (re)authentication and (re)encryption are done and the link is ready for data exchange?

- Does peripheralStateNotificationCB() with newState=GAPROLE_CONNECTED is being called after authentication and encryption are done?

- Any other callback?

Thanks


PROCESSOR-SDK-AM335X: SGX Drivers w/ 24 bpp not working

$
0
0

Part Number:PROCESSOR-SDK-AM335X

I am having the same problem mentioned in this post:

https://e2e.ti.com/support/arm/sitara_arm/f/791/p/491842/1776002

We have a BeagleBone Black running SGX driver version 5.01.01.02 with a 24 bpp LCD display. The modules are running just as  states:

debian@arm:~$ lsmod | grep omapl 

omaplfb 12270 0 
pvrsrvkm 155997 1 omaplfb 
tilcdc 26543 1 omaplfb

but during boot we see the same error which I believe is because the SGX drivers don't support 24bpp:

omaplfb: OMAPLFBInitFBDev: Device 0: Unknown FB format

 

In the reply from , he mentioned to try using the latest drivers where the 24bpp is supported. Where would I find those drivers?

The reply: "Indeed, I saw it now. You have only the 16 bpp and 32 bpp. Seems the 24 bpp is not supported by this driver. Try to switch to 16 bpp or use the latest drivers where the 24 bpp is supported."

SN74AUP2G17: SN74AUP2G17* IBIS MODEL

CCS/CC3220MODA: How to read keyboard input from CCS console?

$
0
0

Part Number:CC3220MODA

Tool/software: Code Composer Studio

Hello,

What's the best way to read input from the CCS console on the CC3220?  I'm using freertos, and putting my console read logic into a task (lower priority than other tasks).  I'm using fgets(buf, buf_size, stdin) and it seems to read the characters, but blocks the rest of the application from running.

Any ideas?

thanks!

Joe K.

CCS/MSP-EXP430F5529LP: Unable to configure to run GUI Composer

$
0
0

Part Number:MSP-EXP430F5529LP

Tool/software: Code Composer Studio

Hi All,

I cannot get GUI Composer to run in an example project.

I have a MSP-EXP430F5529LP and TRF7970ABP bundle I am using to evaluate RFID product options.  I have successfully programmed and can debug the example code sloa227 for the RFID Reader/Writer.  I have followed the directions in the NFCLink Standalone Getting Started guide to the "section 2.4 Install the MSP430 CDC Driver" . When the MSP430/TRF7970 kit is connected and running in CCS7, the new com ports that are enumerated according to the WIn Device Manager are: "MSP Application UART1",  "MSP Debug Interface",  and "USB Serial Device".  There is no "MSP-USB Example". as described in the Getting Started Guide.

I do not understand whether the CDC driver is installed, or whether the LP application is incorrect, or whether I just do not understand the next step.  After many hours of looking at posts and trying to understand the differences between CGv1 and GCv2, etc.  I just do not get what the next step should be.  I have used GC in the past with CCS 6.

I have the opened the GUI Composer from View/Gui Composer is CCS but get lost on next step.

How do I determine and/or load the "NFCLink (standalone firmware) in the target?

As is obvious I lack the basic understanding of how the pieces of software should be installed and what functions each provides.  I would greatly appreciate any guidance I can get.  I have lots of TIVA, CCS, and a little GUI Composer work in the past but am stuck here.

Thanks,

Randy

Looking to modify tidu765 (single-supply electret microphone ref design) to a 3.3v supply.

$
0
0

Hello,

I have enjoyed reading tidu765. I am working on a design to try to detect a 50-100 hz signal based on this design reference.

Has anyone modified tidu765 to run on a 3.3v supply? Is this a bad idea? I can always add a boost to 5v, but am looking to minimize hardware. If this isn't a terrible idea, can anyone provide some good first steps / pitfalls that I should be aware of? 

Thank you!

Viewing all 262198 articles
Browse latest View live


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