Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
R
RIOT
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
cm-projects
RIOT
Commits
cd27639e
Commit
cd27639e
authored
11 years ago
by
Hauke Petersen
Browse files
Options
Downloads
Patches
Plain Diff
Fixed spelling
parent
e5a8945f
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
drivers/include/periph/pwm.h
+7
-7
7 additions, 7 deletions
drivers/include/periph/pwm.h
with
7 additions
and
7 deletions
drivers/include/periph/pwm.h
+
7
−
7
View file @
cd27639e
...
@@ -7,11 +7,11 @@
...
@@ -7,11 +7,11 @@
/**
/**
* @ingroup driver_periph
* @ingroup driver_periph
* @brief Low-level PWM periph
i
al driver
* @brief Low-level PWM periph
er
al driver
* @{
* @{
*
*
* @file pwm.h
* @file pwm.h
* @brief Low-level PWM periph
i
al driver interface definitions
* @brief Low-level PWM periph
er
al driver interface definitions
*
*
* @author Hauke Petersen <hauke.petersen@fu-berlin.de>
* @author Hauke Petersen <hauke.petersen@fu-berlin.de>
*/
*/
...
@@ -37,7 +37,7 @@ typedef enum {
...
@@ -37,7 +37,7 @@ typedef enum {
#endif
#endif
/**
/**
* @brief Definition of availabe PWM modes
* @brief Definition of availab
l
e PWM modes
*/
*/
typedef
enum
{
typedef
enum
{
PWM_LEFT
,
///< use left aligned PWM
PWM_LEFT
,
///< use left aligned PWM
...
@@ -55,14 +55,14 @@ typedef enum {
...
@@ -55,14 +55,14 @@ typedef enum {
*
*
* The desired frequency and resolution may not be possible on a given device when chosen
* The desired frequency and resolution may not be possible on a given device when chosen
* to large. In this case the PWM driver will always keep the resolution and decrease the
* to large. In this case the PWM driver will always keep the resolution and decrease the
* frequency if needed. To ver
y
fy the correct settings compare the returned value which
* frequency if needed. To ver
i
fy the correct settings compare the returned value which
* is the actually set frequency.
* is the actually set frequency.
*
*
* @param dev PWM channel to initialize
* @param dev PWM channel to initialize
* @param mode PWM mode, left, right or center aligned
* @param mode PWM mode, left, right or center aligned
* @param frequency the PWM frequency in Hz
* @param frequency the PWM frequency in Hz
* @param resolution the PWM resolution
* @param resolution the PWM resolution
* @return the ac
u
tally set frequency,
* @return the act
u
ally set frequency,
* 0 if frequency and resolution settings are not applicable,
* 0 if frequency and resolution settings are not applicable,
* -1 on error
* -1 on error
*/
*/
...
@@ -77,7 +77,7 @@ int pwm_init(pwm_t dev, pwm_mode_t mode, unsigned int frequency, unsigned int re
...
@@ -77,7 +77,7 @@ int pwm_init(pwm_t dev, pwm_mode_t mode, unsigned int frequency, unsigned int re
* @param dev the PWM device to set
* @param dev the PWM device to set
* @param channel the channel of the given device to set
* @param channel the channel of the given device to set
* @param value the desired duty-cycle to set
* @param value the desired duty-cycle to set
* @return the ac
u
tally set duty-cycle, -1 on invali
c
device or channel
* @return the act
u
ally set duty-cycle, -1 on invali
d
device or channel
*/
*/
int
pwm_set
(
pwm_t
dev
,
int
channel
,
unsigned
int
value
);
int
pwm_set
(
pwm_t
dev
,
int
channel
,
unsigned
int
value
);
...
@@ -89,7 +89,7 @@ int pwm_set(pwm_t dev, int channel, unsigned int value);
...
@@ -89,7 +89,7 @@ int pwm_set(pwm_t dev, int channel, unsigned int value);
void
pwm_start
(
pwm_t
dev
);
void
pwm_start
(
pwm_t
dev
);
/**
/**
* @brief Stop PWM generation on the given de
i
vce
* @brief Stop PWM generation on the given dev
i
ce
*
*
* @param dev device to stop
* @param dev device to stop
*/
*/
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment