Difference between revisions of "PWM"
From ArmadeusWiki
(→Usage) |
(→Usage) |
||
Line 21: | Line 21: | ||
Load the module: | Load the module: | ||
# /lib/modules/2.6.18.1/extra/pwm/pwm.ko | # /lib/modules/2.6.18.1/extra/pwm/pwm.ko | ||
− | |||
− | |||
Now you have access to /sys/class/pwm/ functionnalities: | Now you have access to /sys/class/pwm/ functionnalities: |
Revision as of 18:14, 2 February 2007
On this page, you will find usefull informations to configure and use the Pulse Width Modulation (PWM) capabilities of your APF9328 board.
Your is capable of driving 2 PWM signals:
- one is linked to the LCD controller and allow to control LCD backlight, see LCD page for more informations
- the other can be used to generate PWM signals in several mode:
* audio playback * real PWM
Contents
Configuration
First be sure to have the PWM Linux driver activated:
$ make linux-menuconfig
$ make
Installation
Either copy generated module target/linux/modules/pwm/pwm.ko to your system with TFTP or NFS or reflash the generated rootfs
Usage
Load the module:
# /lib/modules/2.6.18.1/extra/pwm/pwm.ko
Now you have access to /sys/class/pwm/ functionnalities:
- to activate PWM:
# echo 1 > /sys/class/pwm/active
- to de-activate PWM:
# echo 0 > /sys/class/pwm/active
- to change frequency (for example 500 Hz):
# echo 500 > /sys/class/pwm/frequency
- to change period (for example 100us):
# echo 100 > /sys/class/pwm/period
- to change duty cycle (for example 50.0%)
# echo 500 > /sys/class/pwm/duty
Audio playback mode is not fully functionnal/tested yet. Ask JulienB if you really need it...