diff options
author | Joey Castillo <jose.castillo@gmail.com> | 2021-09-13 13:21:33 -0400 |
---|---|---|
committer | Joey Castillo <jose.castillo@gmail.com> | 2021-09-13 13:21:33 -0400 |
commit | cd935193e30ba3a44d3fc19d1147859fd9a5b1ed (patch) | |
tree | 8d42abf77996aa486010693f155008c754c42cc1 /watch-library/hal/documentation/pwm.rst | |
parent | 66d45c521edded56ef867b4fe89759d2bce7b75f (diff) | |
download | Sensor-Watch-cd935193e30ba3a44d3fc19d1147859fd9a5b1ed.tar.gz Sensor-Watch-cd935193e30ba3a44d3fc19d1147859fd9a5b1ed.tar.bz2 Sensor-Watch-cd935193e30ba3a44d3fc19d1147859fd9a5b1ed.zip |
remove unused ASF code
Diffstat (limited to 'watch-library/hal/documentation/pwm.rst')
-rw-r--r-- | watch-library/hal/documentation/pwm.rst | 53 |
1 files changed, 0 insertions, 53 deletions
diff --git a/watch-library/hal/documentation/pwm.rst b/watch-library/hal/documentation/pwm.rst deleted file mode 100644 index 71785c63..00000000 --- a/watch-library/hal/documentation/pwm.rst +++ /dev/null @@ -1,53 +0,0 @@ -The PWM Driver(bare-bone) -========================= - -Pulse-width modulation (PWM) is used to create an analog behavior -digitally by controlling the amount of power transferred to the -connected peripheral. This is achieved by controlling the high period -(duty-cycle) of a periodic signal. - -User can change the period or duty cycle whenever PWM is running. The -function pwm_set_parameters is used to configure these two parameters. -Note these are raw register values and the parameter duty_cycle means -the period of first half during one cycle, which should be not beyond -total period value. - -In addition, user can also get multi PWM channels output from different -peripherals at the same time, which is implemented more flexible by the -function pointers. - -Features --------- - -* Initialization/de-initialization -* Enabling/disabling -* Run-time control of PWM duty-cycle and period -* Notifications about errors and one PWM cycle is done - -Applications ------------- - -Motor control, ballast, LED, H-bridge, power converters, and -other types of power control applications. - -Dependencies ------------- - -The peripheral which can perform waveform generation like frequency -generation and pulse-width modulation, such as Timer/Counter. - -Concurrency ------------ - -N/A - -Limitations ------------ - -The current driver doesn't support the features like recoverable, -non-recoverable faults, dithering, dead-time insertion. - -Known issues and workarounds ----------------------------- - -N/A |