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
476167a8
You need to sign in or sign up before continuing.
Commit
476167a8
authored
9 years ago
by
Hauke Petersen
Browse files
Options
Downloads
Patches
Plain Diff
cpu: fixed any doxygen warning realated to 'periph'
parent
77b79037
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
cpu/kinetis_common/include/periph_cpu.h
+5
-0
5 additions, 0 deletions
cpu/kinetis_common/include/periph_cpu.h
cpu/samd21/include/periph_cpu.h
+1
-1
1 addition, 1 deletion
cpu/samd21/include/periph_cpu.h
with
6 additions
and
1 deletion
cpu/kinetis_common/include/periph_cpu.h
+
5
−
0
View file @
476167a8
...
@@ -38,10 +38,15 @@ typedef uint16_t gpio_t;
...
@@ -38,10 +38,15 @@ typedef uint16_t gpio_t;
*/
*/
#define GPIO_UNDEF (0xffff)
#define GPIO_UNDEF (0xffff)
/**
* @brief Definition of pin and port positions in the gpio_t type
* @{
*/
#define GPIO_PORT_SHIFT (8)
#define GPIO_PORT_SHIFT (8)
#define GPIO_PORT_MASK (0xff << (GPIO_PORT_SHIFT))
#define GPIO_PORT_MASK (0xff << (GPIO_PORT_SHIFT))
#define GPIO_PIN_SHIFT (0)
#define GPIO_PIN_SHIFT (0)
#define GPIO_PIN_MASK (0xff << (GPIO_PIN_SHIFT))
#define GPIO_PIN_MASK (0xff << (GPIO_PIN_SHIFT))
/** @} */
/**
/**
* @brief Define a CPU specific GPIO pin generator macro
* @brief Define a CPU specific GPIO pin generator macro
...
...
This diff is collapsed.
Click to expand it.
cpu/samd21/include/periph_cpu.h
+
1
−
1
View file @
476167a8
...
@@ -92,7 +92,7 @@ typedef struct {
...
@@ -92,7 +92,7 @@ typedef struct {
* @brief PWM device configuration data structure
* @brief PWM device configuration data structure
*/
*/
typedef
struct
{
typedef
struct
{
Tcc
*
dev
;
/*< TCC device to use */
Tcc
*
dev
;
/*
*
< TCC device to use */
pwm_conf_chan_t
chan
[
2
];
/**< channel configuration */
pwm_conf_chan_t
chan
[
2
];
/**< channel configuration */
}
pwm_conf_t
;
}
pwm_conf_t
;
...
...
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