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
4707ad2f
Commit
4707ad2f
authored
7 years ago
by
Hauke Petersen
Browse files
Options
Downloads
Patches
Plain Diff
cpu/sam0_common: fixed UART for samd21
parent
5dd38c68
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
cpu/sam0_common/periph/uart.c
+21
-23
21 additions, 23 deletions
cpu/sam0_common/periph/uart.c
with
21 additions
and
23 deletions
cpu/sam0_common/periph/uart.c
+
21
−
23
View file @
4707ad2f
...
...
@@ -8,7 +8,8 @@
*/
/**
* @ingroup driver_periph
* @ingroup cpu_sam0_common
* @ingroup drivers_periph_uart
* @{
*
* @file
...
...
@@ -30,6 +31,9 @@
#define ENABLE_DEBUG (0)
#include
"debug.h"
/* do not build the file in case no UART is defined */
#ifdef UART_NUMOF
/**
* @brief Allocate memory to store the callback functions
*/
...
...
@@ -64,30 +68,9 @@ static uint8_t sercom_gclk_id[] =
#endif
static
int
init_base
(
uart_t
uart
,
uint32_t
baudrate
);
int
uart_init
(
uart_t
uart
,
uint32_t
baudrate
,
uart_rx_cb_t
rx_cb
,
void
*
arg
)
{
/* initialize basic functionality */
int
res
=
init_base
(
uart
,
baudrate
);
if
(
res
!=
UART_OK
)
{
return
res
;
}
/* register callbacks */
uart_ctx
[
uart
].
rx_cb
=
rx_cb
;
uart_ctx
[
uart
].
arg
=
arg
;
/* configure interrupts and enable RX interrupt */
NVIC_EnableIRQ
(
SERCOM0_IRQn
+
sercom_id
(
_uart
(
uart
)));
_uart
(
uart
)
->
INTENSET
.
reg
|=
SERCOM_USART_INTENSET_RXC
;
return
UART_OK
;
}
static
int
init_base
(
uart_t
uart
,
uint32_t
baudrate
)
{
if
((
unsigned
int
)
uart
>=
UART_NUMOF
)
{
if
(
uart
>=
UART_NUMOF
)
{
return
UART_NODEV
;
}
...
...
@@ -151,6 +134,19 @@ static int init_base(uart_t uart, uint32_t baudrate)
while
(
_uart
(
uart
)
->
SYNCBUSY
.
bit
.
CTRLB
)
{}
uart_poweron
(
uart
);
#endif
/* finally, enable the device */
_uart
(
uart
)
->
CTRLA
.
reg
|=
SERCOM_USART_CTRLA_ENABLE
;
/* register callbacks */
if
(
rx_cb
)
{
uart_ctx
[
uart
].
rx_cb
=
rx_cb
;
uart_ctx
[
uart
].
arg
=
arg
;
/* configure interrupts and enable RX interrupt */
NVIC_EnableIRQ
(
SERCOM0_IRQn
+
sercom_id
(
_uart
(
uart
)));
_uart
(
uart
)
->
INTENSET
.
reg
|=
SERCOM_USART_INTENSET_RXC
;
}
return
UART_OK
;
}
...
...
@@ -304,3 +300,5 @@ static uint64_t _long_division(uint64_t n, uint64_t d)
return
q
;
}
#endif
#endif
/* UART_NUMOF */
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