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
4b15cc63
Commit
4b15cc63
authored
9 years ago
by
Kaspar Schleiser
Browse files
Options
Downloads
Patches
Plain Diff
cpu: stm32f4: use periph_common SPI functions
parent
fa00154f
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/Makefile.include
+3
-0
3 additions, 0 deletions
cpu/stm32f4/Makefile.include
cpu/stm32f4/include/periph_cpu.h
+8
-0
8 additions, 0 deletions
cpu/stm32f4/include/periph_cpu.h
cpu/stm32f4/periph/spi.c
+0
-60
0 additions, 60 deletions
cpu/stm32f4/periph/spi.c
with
11 additions
and
60 deletions
cpu/stm32f4/Makefile.include
+
3
−
0
View file @
4b15cc63
...
...
@@ -3,4 +3,7 @@ export CPU_ARCH = cortex-m4f
# use hwtimer compatibility module
USEMODULE
+=
hwtimer_compat
# use common periph functions
USEMODULE
+=
periph_common
include
$(RIOTCPU)/Makefile.include.cortexm_common
This diff is collapsed.
Click to expand it.
cpu/stm32f4/include/periph_cpu.h
+
8
−
0
View file @
4b15cc63
...
...
@@ -90,6 +90,14 @@ typedef enum {
*/
void
gpio_init_af
(
gpio_t
pin
,
gpio_af_t
af
);
/**
* @brief declare needed generic SPI functions
* @{
*/
#define PERIPH_SPI_NEEDS_TRANSFER_BYTES
#define PERIPH_SPI_NEEDS_TRANSFER_REG
#define PERIPH_SPI_NEEDS_TRANSFER_REGS
/** @} */
#ifdef __cplusplus
}
...
...
This diff is collapsed.
Click to expand it.
cpu/stm32f4/periph/spi.c
+
0
−
60
View file @
4b15cc63
...
...
@@ -350,66 +350,6 @@ int spi_transfer_byte(spi_t dev, char out, char *in)
return
1
;
}
int
spi_transfer_bytes
(
spi_t
dev
,
char
*
out
,
char
*
in
,
unsigned
int
length
)
{
int
trans_bytes
=
0
;
for
(
unsigned
int
i
=
0
;
i
<
length
;
i
++
)
{
char
in_temp
;
int
trans_ret
;
if
(
out
)
{
trans_ret
=
spi_transfer_byte
(
dev
,
out
[
i
],
&
in_temp
);
}
else
{
trans_ret
=
spi_transfer_byte
(
dev
,
0
,
&
in_temp
);
}
if
(
trans_ret
<
0
)
{
return
-
1
;
}
if
(
in
!=
NULL
)
{
in
[
i
]
=
in_temp
;
}
trans_bytes
++
;
}
return
trans_bytes
++
;
}
int
spi_transfer_reg
(
spi_t
dev
,
uint8_t
reg
,
char
out
,
char
*
in
)
{
int
trans_ret
;
trans_ret
=
spi_transfer_byte
(
dev
,
reg
,
in
);
if
(
trans_ret
<
0
)
{
return
-
1
;
}
trans_ret
=
spi_transfer_byte
(
dev
,
out
,
in
);
if
(
trans_ret
<
0
)
{
return
-
1
;
}
return
1
;
}
int
spi_transfer_regs
(
spi_t
dev
,
uint8_t
reg
,
char
*
out
,
char
*
in
,
unsigned
int
length
)
{
int
trans_ret
;
trans_ret
=
spi_transfer_byte
(
dev
,
reg
,
in
);
if
(
trans_ret
<
0
)
{
return
-
1
;
}
trans_ret
=
spi_transfer_bytes
(
dev
,
out
,
in
,
length
);
if
(
trans_ret
<
0
)
{
return
-
1
;
}
return
trans_ret
;
}
void
spi_transmission_begin
(
spi_t
dev
,
char
reset_val
)
{
...
...
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