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

TSW1400EVM: Inverting the SYNC1 or SYNC2 Output

$
0
0

Part Number:TSW1400EVM

I need to use the SYNC1 or SYNC2 output from the TSW1400EVM to drive the ~SYNC input to the CDCE62005 on the DAC3484EVM.

I have configured the TSW1400EVM to pass my external trigger signal to the SYNC1/2 connectors appropriately, but there does not seem to be any way to invert this signal.  Since the external trigger in the TSW1400EVM FPGA reacts to the rising edge, I cannot invert my external trigger signal.  I need the CDCE62005 to be synchronized to the same edge.

Is there a command to invert the SYNC1/2 signal outputs in the TSW1400EVM FPGA?  If not, can such a thing be added?

Thank you!


MSP430F5529: Weird glitch in a PWM waveform. Need a code review

$
0
0

Part Number:MSP430F5529

Team,

I am trying to generate a OWM sine wave via lookup table, but I am seeing a weird artefact in the wave. Here is the code I am using to generate the waveform:

#include <msp430.h>

void setClocks();
void PWMRegsetup ();

unsigned int i=0, j=0; //counters for for loop
const unsigned int sinTable[] = {512,562,611,660,707,753,796,836,873,907,937,963,984,1001,1013,1021,1023,1021,1013,1001,
                                                   984,963,937,907,873,836,796,753,707,660,611,562,512,461,412,363,316,270,227,187,
                                                   150,116,86,60,39,22,10,2,0,2,10,22,39,60,86,116,150,187,227,270,316,363,412,461,512};

void main(void)
{
WDTCTL = WDTPW+WDTHOLD; // Disable WDT
PWMRegsetup();
setClocks();

TBCTL = TBSSEL_2+MC_1;           // SMCLK, upmode
TBCCR0 = 1024-1;                           // PWM Period indicates a 10-bit DAC
TBCCTL0 = CCIE;                            // TRCCR0 interrupt enabled
TBCCTL6 = OUTMOD_7;                // CCR3 reset/set

while(1){
__bis_SR_register(LPM0_bits + GIE);         // CPU off. Used for ISR
__no_operation();                                          // For debugger
}
}

// FUNCTIONS //

// Timer B0 interrupt service routine
#if defined(__TI_COMPILER_VERSION__) || defined(__IAR_SYSTEMS_ICC__)
#pragma vector=TIMERB0_VECTOR
__interrupt void TIMERB1_ISR(void)
#elif defined(__GNUC__)
void __attribute__ ((interrupt(TIMERB0_VECTOR))) TIMERB1_ISR (void)
#else
#error Compiler not supported!
#endif
{

//Output a Sine Wave PWM on pin P3.6
TBCCR6 = sinTable[j]; // CCR3 PWM duty cycle
j++;
if(j>=64)
j = 0;
}

void setClocks(void)
{
UCSCTL3 = SELREF_2; // Set DCO FLL reference = REFO
UCSCTL4 |= SELA_2; // Set ACLK = REFO
UCSCTL0 = 0x0000; // Set lowest possible DCOx, MODx

// Loop until XT1,XT2 & DCO stabilizes - In this case only DCO has to stabilize
do
{
UCSCTL7 &= ~(XT2OFFG + XT1LFOFFG + DCOFFG);
// Clear XT2,XT1,DCO fault flags
SFRIFG1 &= ~OFIFG; // Clear fault flags
}while (SFRIFG1&OFIFG); // Test oscillator fault flag

__bis_SR_register(SCG0); // Disable the FLL control loop
UCSCTL1 = DCORSEL_5; // Select DCO range 16MHz operation
UCSCTL2 |= 762; // Set DCO Multiplier for 8MHz
// (N + 1) * FLLRef = Fdco
// (762 + 1) * 32768 = 25MHz
__bic_SR_register(SCG0); // Enable the FLL control loop

// Worst-case settling time for the DCO when the DCO range bits have been
// changed is n x 32 x 32 x f_MCLK / f_FLL_reference. See UCS chapter in 5xx
// UG for optimization.
// 32 x 32 x 25 MHz / 32,768 Hz = 781000 = MCLK cycles for DCO to settle
__delay_cycles(781000);
}

void PWMRegsetup (void)
{
P3SEL |= BIT6; // P3.6 option select
P3DIR |= BIT6; // P3.6 output (TB6)
}

I'm wondering if I am calling something in the ISR routine incorrectly? Any advice would be appreciated.

DLPC3435: Problem Starting Up Device (HOST_IRQ will not go LOW)

$
0
0

Part Number:DLPC3435

Hello,

I have implemented the DLP2010 chipset on a custom board. I am having difficulty getting the DLPC3435 to start up. I have verified the following:

- PROJ_ON is HIGH

- Oscillator on PLL_REFCLK is running at 24 MHz

- RESETZ is HIGH

- INTZ is HIGH

... But HOST_IRQ will not go low. I am expecting this pin to go low so that I can start talking to the device using I2C, however I can't figure out why HOST IRQ is acting this way. 

Can you please help?

Thanks!

Sam

TPS65251: About PGOOD of TPS65251-Q1

$
0
0

Part Number:TPS65251

About PGOOD of TPS65251-Q1

I would like to confirm the operation of PGOOD of TPS65251-Q1.
(About the operation when only Under Voltage is detected)

Q1.
If any of the BUCK converters detects a Under Voltage exceeding 10 ms and no overcurrent is occurring, all converters are shut down for 10 ms and the startup sequence is repeated.

Is it correct?

Q2.
If the Under Voltage lasts less than 10 ms and no overcurrent is occurring, the converter ramps up and operates normally as soon as Under Voltage is removed.

Is it correct?

- Harukawa

Linux/MSP430FR2433: Running new FW Troubleshoot

$
0
0

Part Number:MSP430FR2433

Tool/software: Linux

Hello,

I've had some time getting a chance to work the EVM and had a question. I have been able to load a new image onto the board via i2c and the msp430-i2cbsl-tool on our linux platform, the only issue is that after a flash it requires me to manually power cycle the board to get it to run the new FW. Is there anyone who can answer my questions about that tool? I have found this guide www.ti.com/.../swra500.pdf but it wasn't much help in troubleshooting.

Thank you in advanced for your help!

TMS320F28377S: SD_CARD Operation

$
0
0

Part Number:TMS320F28377S

Hi,

I have one TMS320F28377S LAUNCHPAD XL evaluation board, now I plan to write/read SD card using it. I am not sure it is right board for SD card reading? Or do you have corresponding board for SD card reading?

Best Regards,

Kent

TPS65381A-Q1: Output condition of ENDRV at Power-up

$
0
0

Part Number:TPS65381A-Q1

Dear Specialists,

My customer is considering TPS65381A-Q1 and has a question.

Could you please advise?

---question---

According to the datasheet P.23 (5.4.1 Power-Up and Power-Down Behavior) of Figure 5-1. Power-Up and Power-Down Behavior,

ENDRV signal begins LO.

Is there any possibility when the device starts working(power on),  it outputs intermediate  voltage and then LO?

Could I decide always LO? 

---

I appreciate your great help in advance.

Best regards,

Shinichi

CCS: How to set or config CCS7 for XGCONF graphical editor?

$
0
0

Tool/software: Code Composer Studio

Dear sir,

My development system consists of windows 10 pro 64 bit, CCS7.2 and TMS320F28377D customizing board and now installed SYS/BIOS version is 6.50.1.12 and XDCtools version is 3.50.2.20.

Any CCS project except RTSC project is working well while a CCS7 is in editing, compiling and debugging.

But I don't have a problem in compiling and debugging a RTSC project but editing a RTSC project ecpecially editing graphycally.

My CCS7 is not activate Available Products while select *.cfg. This window shows "Shows modules on the package path of a RTSC project....." , and the icon of *.cfg file in [Project Explorer] is not RTSC config file type but common text file, and a editor window is only for text edit without bottom select tap for selecting [SYS/BIOS], [Properties], and [cfg Script].

And [Available Products] item in [Show Vew] select window is inactive like below image.

How can I active XGCONF graphical editor?

Thank you for your kind reply in advance.


RTOS/MSP430F5510: MSP430F5510 (with 32KB flash and 4+2KB RAM) can run TI-RTOS ?

SN65DP149: GPU's AUXp/N connection to DP140

$
0
0

Part Number:SN65DP149

there is no AUX_P/N in DP149 and just confirm GPU's AUXp/N connecting to SDA_SRC and SCL_SRC of DP149 with 2K pullup to 3.3V .

CSD17310Q5A: Junction temperature issue.

$
0
0

Part Number:CSD17310Q5A

Hi sir:

we are measuring CSD17310Q5A in the component derating test..
There is a formula “0.75(Tjmax - 25°C) + 30°C” for junction temperature margin.
Could you help me to explain this formula ?

BQ27510-G3: internal 2.5V LDO spec check

$
0
0

Part Number:BQ27510-G3

Assuming power is connected to the REGIN pin on BQ27510-G3, are there any cases where the internal +2.5V LDO turns off?  Or does it always stay on?  If possible, I would like to use this to power a small microcontroller that would handle I2C comms with the BQ27510-G3.

Regards,

Jason

BQ24040: May we know what BQ24040 will operation when Vin is 1.1~3.3V?

$
0
0

Part Number:BQ24040

Hi Sir 

May we know what BQ24040 will operation when Vin is 1.1~3.3V?

As i understanding, The BQ24040 should be can not turn on(because Vin minimum is 3.5V), charger function off, Vout off, am i right?

                                                                                    Bogey

TPS2546: Ipad is not supported.

$
0
0

Part Number:TPS2546

I am using TPS2546 for my USB 1A and 2.5A outlet design. While testing with various devices like android phones, Iphones, tablets and smart watches, I found that Ipad charging is NOT supported by the chip. I am following EVM as my reference design. Does the circuit needs any modifications to support ipad charging? 

-Prashanth

How to write Link_Supervision_ Timeout with bluetopia stack?

$
0
0

Hi 

Because we have iphone disconnect issue , so we want to read/write Link_Supervision_ Timeout  try to fix disconnect issue . 

But we don't know how to Convert "Read_Link_Supervision_Timeout"  and "Write_Link_Supervision_Timeout" to HCI format.

Nathan Kuo


MSP-EXP430F5438

$
0
0

Hi Lukas,

I would like to try your solution which was given to me on Monday(12/06/2017), but I think my query is different . Kindly find the attached document for further understanding

Regards,

Rajashree

(Please visit the site to view this file)

SN65LVDS31-EP: Differential output tr/tf minimum and maximum values

$
0
0

Part Number:SN65LVDS31-EP

Hi team,

My customer wants to know differential output tr/tf minimum and maximum values.
But these values are not described in the datasheet.

If you have the data, Please let me know the values.

・Data Sheet: www.ti.com/.../sn65lvds31-ep

Best regards,
Fumio Nakano

THS7303: May we know if THS7303 can replace MAX1752?

$
0
0

Part Number:THS7303

Hi Sir 

May we know if THS7303 can replace MAX1752? because we use cross reference in web, but we can't find datasheet.

but i saw THS7303 seems can be use,because i am not familiar this kind application. can you help me?

                                                                       Bogey

 

CC2564CMSP432BTBLESW: How to test/demo HID profile (over BLE) ?

CC3200: CC3200 CE techanical question

$
0
0

Part Number:CC3200

We are applying the CE certifcate for a product using CC3200. Certification lab requires us to fill in below techanical questions. Please help to answer.

1. The Channel Occupancy Time implemented by the equipment: xx ms

2. The equipment has implemented an LBT based DAA mechanism. Yes/No?

      a. The equipment is Frame Based equipment. Yes/No?

      b. The equipment is Load Based equipment. Yes/No?

      c. The equipment can switch dynamically between Frame Based and
          Load Based equipment. Yes/NO?

      d. The CCA time implemented by the equipment: xx us

3. The equipment has implemented an non-LBT based DAA mechanism.Yes/No?

4. The equipment can operate in moer than one adaptive mode. Yes/No?

Viewing all 262198 articles
Browse latest View live


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