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
3f478b6e
Commit
3f478b6e
authored
9 years ago
by
Hauke Petersen
Browse files
Options
Downloads
Patches
Plain Diff
cpu/stm32f4: adapted to GPIO changes
parent
46bf22a0
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
cpu/stm32f4/include/periph_cpu.h
+25
-0
25 additions, 0 deletions
cpu/stm32f4/include/periph_cpu.h
cpu/stm32f4/periph/gpio.c
+17
-18
17 additions, 18 deletions
cpu/stm32f4/periph/gpio.c
cpu/stm32f4/periph/uart.c
+2
-2
2 additions, 2 deletions
cpu/stm32f4/periph/uart.c
with
44 additions
and
20 deletions
cpu/stm32f4/include/periph_cpu.h
+
25
−
0
View file @
3f478b6e
...
...
@@ -76,6 +76,31 @@ typedef enum {
}
adc_res_t
;
/** @} */
/**
* @brief Generate GPIO mode bitfields
*
* We use 5 bit to encode the mode:
* - bit 0+1: pin mode (input / output)
* - bit 2+3: pull resistor configuration
* - bit 4: output type (0: push-pull, 1: open-drain)
*/
#define GPIO_MODE(io, pr, ot) ((io << 0) | (pr << 2) | (ot << 4))
/**
* @brief Override GPIO mode options
* @{
*/
#define HAVE_GPIO_MODE_T
typedef
enum
{
GPIO_IN
=
GPIO_MODE
(
0
,
0
,
0
),
/**< input w/o pull R */
GPIO_IN_PD
=
GPIO_MODE
(
0
,
2
,
0
),
/**< input with pull-down */
GPIO_IN_PU
=
GPIO_MODE
(
0
,
1
,
0
),
/**< input with pull-up */
GPIO_OUT
=
GPIO_MODE
(
1
,
0
,
0
),
/**< push-pull output */
GPIO_OD
=
GPIO_MODE
(
1
,
0
,
1
),
/**< open-drain w/o pull R */
GPIO_OD_PU
=
GPIO_MODE
(
1
,
1
,
1
)
/**< open-drain with pull-up */
}
gpio_mode_t
;
/** @} */
/**
* @brief Available ports on the STM32F4 family
*/
...
...
This diff is collapsed.
Click to expand it.
cpu/stm32f4/periph/gpio.c
+
17
−
18
View file @
3f478b6e
...
...
@@ -62,32 +62,31 @@ static inline int _pin_num(gpio_t pin)
return
(
pin
&
0x0f
);
}
int
gpio_init
(
gpio_t
pin
,
gpio_
dir_t
dir
,
gpio_pp_t
pullup
)
int
gpio_init
(
gpio_t
pin
,
gpio_
mode_t
mode
)
{
GPIO_TypeDef
*
port
=
_port
(
pin
);
int
pin_num
=
_pin_num
(
pin
);
/* enable clock */
RCC
->
AHB1ENR
|=
(
RCC_AHB1ENR_GPIOAEN
<<
_port_num
(
pin
));
/* configure pull register */
port
->
PUPDR
&=
~
(
3
<<
(
2
*
pin_num
));
port
->
PUPD
R
|
=
(
pullup
<<
(
2
*
pin_num
));
/* set direction */
if
(
dir
==
GPIO_DIR_OUT
)
{
port
->
MODE
R
&=
~
(
3
<<
(
2
*
pin_num
));
/* set pin to output mode */
port
->
MODE
R
|=
(
1
<<
(
2
*
pin_num
));
port
->
OTYPER
&=
~
(
1
<<
pin_num
);
/* set to push-pull
*/
port
->
O
SPEED
R
|
=
(
3
<<
(
2
*
pin_num
)
);
/* set to high speed */
port
->
O
D
R
&
=
~
(
1
<<
pin_num
);
/* set pin to low signal */
}
else
{
port
->
MODER
&=
~
(
3
<<
(
2
*
pin_num
));
/* configure pin as input */
}
/* set mode */
port
->
MODE
R
&
=
~
(
0x3
<<
(
2
*
pin_num
));
port
->
MODER
|=
((
mode
&
0x3
)
<<
(
2
*
pin_num
));
/* set pull resistor configuration */
port
->
PUPD
R
&=
~
(
0x
3
<<
(
2
*
pin_num
));
port
->
PUPD
R
|=
(((
mode
>>
2
)
&
0x3
)
<<
(
2
*
pin_num
));
/* set output mode
*/
port
->
O
TYPE
R
&
=
~
(
1
<<
pin_num
)
;
port
->
O
TYPE
R
|
=
(((
mode
>>
4
)
&
0x1
)
<<
pin_num
);
/* reset speed value and clear pin */
port
->
OSPEEDR
|=
(
3
<<
(
2
*
pin_num
));
port
->
BSRRH
=
(
1
<<
pin_num
);
return
0
;
}
int
gpio_init_int
(
gpio_t
pin
,
gpio_pp_t
pullup
,
gpio_flank_t
flank
,
int
gpio_init_int
(
gpio_t
pin
,
gpio_mode_t
mode
,
gpio_flank_t
flank
,
gpio_cb_t
cb
,
void
*
arg
)
{
int
pin_num
=
_pin_num
(
pin
);
...
...
@@ -99,7 +98,7 @@ int gpio_init_int(gpio_t pin,
/* enable the SYSCFG clock */
RCC
->
APB2ENR
|=
RCC_APB2ENR_SYSCFGEN
;
/* initialize pin as input */
gpio_init
(
pin
,
GPIO_DIR_IN
,
pullup
);
gpio_init
(
pin
,
mode
);
/* enable global pin interrupt */
if
(
pin_num
<
5
)
{
NVIC_EnableIRQ
(
EXTI0_IRQn
+
pin_num
);
...
...
This diff is collapsed.
Click to expand it.
cpu/stm32f4/periph/uart.c
+
2
−
2
View file @
3f478b6e
...
...
@@ -69,8 +69,8 @@ int uart_init(uart_t uart, uint32_t baudrate, uart_rx_cb_t rx_cb, void *arg)
mutex_lock
(
&
_tx_dma_sync
[
uart
]);
/* configure pins */
gpio_init
(
uart_config
[
uart
].
rx_pin
,
GPIO_
DIR_IN
,
GPIO_NOPULL
);
gpio_init
(
uart_config
[
uart
].
tx_pin
,
GPIO_
DIR_OUT
,
GPIO_NOPULL
);
gpio_init
(
uart_config
[
uart
].
rx_pin
,
GPIO_
IN
);
gpio_init
(
uart_config
[
uart
].
tx_pin
,
GPIO_
OUT
);
gpio_init_af
(
uart_config
[
uart
].
rx_pin
,
uart_config
[
uart
].
af
);
gpio_init_af
(
uart_config
[
uart
].
tx_pin
,
uart_config
[
uart
].
af
);
/* enable UART clock */
...
...
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