This post is older than 2 years and might not be relevant anymore
More Info: Consider searching for newer posts

Controling a PWM signal (duty cycle (0 to 100%) , frequency (0 to 1hz )), using ble over a phone application . Guidance Needed

hi all,

we're developping an application to control the frequency and the duty cycle of a pwm signal throuth ble .

firstly we have built both the functionalities separatly , the ble control and the pwm control (we're using the pwm library as it can gets to low frequencies ) .

but when merging both firmwares , a buch of issues where trigered .first starting with building . we have enabled the the pwm related defines in the config_sdk.h file , including the App_pwm_enabe  the build output pointing to . even that we still get these errors .

we don't know , if we should use the pwm driver instead as we're using the softdevice . cause we're able to control the pwm signal using ble for the pwm driver .but seems we can't get to low frequencies (low then 1hz) !

Any help/guidance would be very apreciated .

*we're using the lastest SDK 15.3.0

best regards,

 

Parents
  • Hi

    How low do you need to go in frequency, while still being above 0?

    How high accuracy do you need? 

    Do you need multiple output channels, or just a single one?

    If you need really low frequencies it is possible that it would be better to use a dedicated RTC timer, rather than one of the standard libraries.If you have the app_timer library in your project you should also be able to use this when the frequency is low. 

    Best regards
    Torbjørn

  • hi ,

    thanks for your reply.

    well, a 0.25hz would be the minimum we need to go for .

    for the accuracy , it should be good . 

    just one channel , need to output the pwm signal to 4 gpio pins .

    for the RTC timer, we're new to the nrf52 developement .and we apreciate any axamples or guidance on how to use the dedicated RTC timer here, also keep in mind that we also need to control the duty cycle .

    best regards,

  • Hi

    I cooked up a quick example showing how you can set up an RTC timer to control a pin. 

    Please note that the pin is set directly from the interrupt handler, which means the pin update can be delayed by higher priority interrupts in the system. 

    I would suggest doing some testing to see if the accuracy is good enough. 

    Also, the example requires you to set the on and off time of the PWM, so you need to do some arithmetics to calculate this based on the frequency and the duty cycle. 

    Best regards
    Torbjørn

Reply
  • Hi

    I cooked up a quick example showing how you can set up an RTC timer to control a pin. 

    Please note that the pin is set directly from the interrupt handler, which means the pin update can be delayed by higher priority interrupts in the system. 

    I would suggest doing some testing to see if the accuracy is good enough. 

    Also, the example requires you to set the on and off time of the PWM, so you need to do some arithmetics to calculate this based on the frequency and the duty cycle. 

    Best regards
    Torbjørn

Children
Related