This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

MSP432 Timer in PWM mode, duty cycle adjustment

Hello!

My name is Aleks and I have the following problem:

I purchased a MSP432 launchpad and wrote a code that is basically reading an ADC value on one pin and uses the value to calculate a duty cycle for a pwm output pin. My problem is that when I use the provided example code from the resources browser for the MSP432 and modify it to my purpose that a change in duty cycle not only changes the duty cycle but also the frequency. I modified the example code to be not interrupt based and put my functions in the endless loop in main:

/* DriverLib Includes */
#include "driverlib.h"

/* Standard Includes */
#include <stdint.h>

#include <stdbool.h>

/* Statics */
static volatile uint16_t curADCResult;
static volatile float normalizedADCRes;


/* Timer_A PWM Configuration Parameter */
Timer_A_PWMConfig pwmConfig =
{
TIMER_A_CLOCKSOURCE_SMCLK,
TIMER_A_CLOCKSOURCE_DIVIDER_1,
1000,
TIMER_A_CAPTURECOMPARE_REGISTER_0,
TIMER_A_OUTPUTMODE_SET_RESET,
1000
};

int main(void)
{
/* Define variables */
volatile uint32_t ii;
volatile int htime = 0;
volatile int ltime = 0;
volatile unsigned int a = 0;

/* Halting the Watchdog */
MAP_WDT_A_holdTimer();

/* Setting DCO to 48MHz */
MAP_PCM_setPowerState(PCM_AM_LDO_VCORE1);
MAP_CS_setDCOCenteredFrequency(CS_DCO_FREQUENCY_48);

/* Enabling the FPU for floating point operation */
MAP_FPU_enableModule();
MAP_FPU_enableLazyStacking();

/* Initializing ADC (MCLK/1/4) */
MAP_ADC14_enableModule();
MAP_ADC14_initModule(ADC_CLOCKSOURCE_MCLK, ADC_PREDIVIDER_1, ADC_DIVIDER_8,0);


/* Remapping TACCR0 to P2.1 to see output on green LED */
const uint8_t port_mapping[] ={PM_TA0CCR0A, PM_TA0CCR0A, PM_TA0CCR0A, PM_NONE, PM_NONE, PM_NONE, PM_NONE, PM_NONE};
MAP_PMAP_configurePorts((const uint8_t *) port_mapping, P2MAP, 1, PMAP_DISABLE_RECONFIGURATION);

/* Configuring GPIOs (ADC: p4.7, Timer-PWM-pin: P2.1) */
MAP_GPIO_setAsPeripheralModuleFunctionInputPin(GPIO_PORT_P4, GPIO_PIN7,GPIO_TERTIARY_MODULE_FUNCTION);
MAP_GPIO_setAsPeripheralModuleFunctionOutputPin(GPIO_PORT_P2, GPIO_PIN1,GPIO_PRIMARY_MODULE_FUNCTION);

/* Configuring ADC Memory */
MAP_ADC14_configureSingleSampleMode(ADC_MEM0, true);
MAP_ADC14_configureConversionMemory(ADC_MEM0, ADC_VREFPOS_AVCC_VREFNEG_VSS,ADC_INPUT_A6, false);

/* Configuring Sample Timer */
MAP_ADC14_enableSampleTimer(ADC_MANUAL_ITERATION);

/* Enabling/Toggling Conversion */
MAP_ADC14_enableConversion();
MAP_ADC14_toggleConversionTrigger();

while (1)
{
curADCResult = MAP_ADC14_getResult(ADC_MEM0);
normalizedADCRes= (curADCResult * 3.3) / 16384;

if (normalizedADCRes>0.7)
a = 100 - normalizedADCRes*30.5;
else
a = 32000;

pwmConfig.dutyCycle = a;
MAP_Timer_A_generatePWM(TIMER_A0_MODULE, &pwmConfig);
MAP_ADC14_toggleConversionTrigger();
}
}

Can you tell me what I'm missing here, I just want the duty cycle to be changed without changing the frequency of the PWM signal.

Thank you in advance and best regards!

Aleks

  • How did you measure the frequency? Can you show a screenshot of the oscilloscope?
  • I measure the output pin on the jumper to the LED (P2.1). to GND.
    I can't provide a screenshot that easy right now but I can tell the values.
    The frequency varies form 618kHz to 6.8MHZ over the full range where the variable a is 0.7 the frequency is the lowest with 617kHz and at a highest 6.8MHz on the PWM output. The LED also varies from off to nearly 100% brightness (due to the duty cycle never hitting 100% but this is on purpose).
  • How exactly are you measuring the frequency?
  • I use a Lecroy wavesurfer 3024.

    Channel 1; couppling DC1Mohm, 40MS/s.

    The probe is connected to the jumper of P2.1 and the GND to one of the GNDs of J7 of the launchpad. It's a straight forward measurement, I have the gutfeeling that you assume a measurement error, but however bad I'd be measuring this scenario, a change of frequency is not a possible side effect (e.g. aliasing) when the max frequency is 6MHz and I sample with 40MS/s. In this case I most likely misuse the pwm function of the timer and see my problem in the code or the module has an erronous behavior or is simply not doing what is described.

  • Aleksandar,

    this has nothing to do with your problem (I have no idea about these ready-to-use functions for configuration), but when using the FPU of the MSP432 you should remember that it is only used for float data types. When writing

    normalizedADCRes = (curADCResult * 3.3) / 16384;

    the 3.3 are handled as double so the FPU will not do the calculation - better make sure you only work with floats. Write 3.3f instead.

    Dennis

  • Hi Dennis!

    Thank you for your response,

    I will try that as soon as I get a new launchpad, I just unplugged and replugged it to a usb cable and now the voltage regulators are boiling hot, I guess a 2m long cable has right about enough inductance to cause an impulse load of over 6V to kill the TPS regulators.
    But as soon as I have the new hardware I'll try the code adaption.

    BR,
    Aleks
  • Well, unfortunately you are not the only one having this issue (regardless of the long cable) - do a forum search for it. Maybe you will find solutions / reasons from other persons.

    Dennis
  • Former Member
    0 Former Member in reply to Aleksandar SIndrak
    Hi Aleks,

    We are in the process of looking into similar overheating problems with the MSP432 LaunchPad. Do you still have the overheating LaunchPad?

    A few questions when you disconnected the USB was there an external power source on the LaunchPad?
  • Hi Joshua!

    I was able to fix the Launchpad I deemed broken. But it was no issue of the power supplies. I just somehow managed to corrupt my MSP core and had to repair this.In an e2e post there is a description on this as I can't remember the steps anymore. But to answer your question, yes I had an inactive powersupply externally connected to the 5V without unjumping the jumper for 5V between debugger part and MSP432 part. This however worked a long time just fine, even switching between the supplies (usb powered or external 5V). I just never had them ON at the same time. However at some point I corrupted the chip and had excessive overheating of the onboard suply ICs. As soon as I managed to flash the MSP432 to factory reset my problems were gone, however the supplies are still mentionably hotter than before. I hope this helps you.

    Best Regards,

    Aleks

**Attention** This is a public forum