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
87b0477b
Unverified
Commit
87b0477b
authored
7 years ago
by
Peter Kietzmann
Committed by
GitHub
7 years ago
Browse files
Options
Downloads
Plain Diff
Merge pull request #7855 from kYc0o/fix_nrf24l01p_var_sizes
drivers/nrf24l01p: misc fixed
parents
847c4da4
aad3c253
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
drivers/include/nrf24l01p.h
+5
-5
5 additions, 5 deletions
drivers/include/nrf24l01p.h
drivers/nrf24l01p/nrf24l01p.c
+2
-2
2 additions, 2 deletions
drivers/nrf24l01p/nrf24l01p.c
tests/driver_nrf24l01p_lowlevel/main.c
+2
-1
2 additions, 1 deletion
tests/driver_nrf24l01p_lowlevel/main.c
with
9 additions
and
8 deletions
drivers/include/nrf24l01p.h
+
5
−
5
View file @
87b0477b
...
@@ -36,11 +36,11 @@ extern "C" {
...
@@ -36,11 +36,11 @@ extern "C" {
* @brief Structure that represents the hardware setup of the nrf24l01+ transceiver.
* @brief Structure that represents the hardware setup of the nrf24l01+ transceiver.
*/
*/
typedef
struct
{
typedef
struct
{
spi_t
spi
;
/**< SPI device to initialize */
spi_t
spi
;
/**< SPI device to initialize */
gpio_t
ce
;
/**< GPIO pin to initialize as chip enable */
gpio_t
ce
;
/**< GPIO pin to initialize as chip enable */
gpio_t
cs
;
/**< GPIO pin to initialize as chip select */
gpio_t
cs
;
/**< GPIO pin to initialize as chip select */
gpio_t
irq
;
/**< GPIO pin to initialize as interrupt request */
gpio_t
irq
;
/**< GPIO pin to initialize as interrupt request */
int
listener
;
/**< Place to store an ID in */
unsigned
listener
;
/**< Place to store an ID in */
}
nrf24l01p_t
;
}
nrf24l01p_t
;
/**
/**
...
...
This diff is collapsed.
Click to expand it.
drivers/nrf24l01p/nrf24l01p.c
+
2
−
2
View file @
87b0477b
...
@@ -386,7 +386,7 @@ int nrf24l01p_set_tx_address_long(const nrf24l01p_t *dev, uint64_t saddr, unsign
...
@@ -386,7 +386,7 @@ int nrf24l01p_set_tx_address_long(const nrf24l01p_t *dev, uint64_t saddr, unsign
char
buf
[
length
];
char
buf
[
length
];
if
(
length
<=
INITIAL_ADDRESS_WIDTH
)
{
if
(
length
<=
INITIAL_ADDRESS_WIDTH
)
{
for
(
int
i
=
0
;
i
<
length
;
i
++
)
{
for
(
unsigned
int
i
=
0
;
i
<
length
;
i
++
)
{
buf
[
i
]
=
(
uint8_t
)(
saddr
>>
(((
length
-
1
)
-
i
)
*
sizeof
(
uint64_t
)));
buf
[
i
]
=
(
uint8_t
)(
saddr
>>
(((
length
-
1
)
-
i
)
*
sizeof
(
uint64_t
)));
}
}
...
@@ -483,7 +483,7 @@ int nrf24l01p_set_rx_address_long(const nrf24l01p_t *dev, nrf24l01p_rx_pipe_t pi
...
@@ -483,7 +483,7 @@ int nrf24l01p_set_rx_address_long(const nrf24l01p_t *dev, nrf24l01p_rx_pipe_t pi
char
buf
[
length
];
char
buf
[
length
];
if
(
length
<=
INITIAL_ADDRESS_WIDTH
)
{
if
(
length
<=
INITIAL_ADDRESS_WIDTH
)
{
for
(
int
i
=
0
;
i
<
length
;
i
++
)
{
for
(
unsigned
int
i
=
0
;
i
<
length
;
i
++
)
{
buf
[
i
]
=
(
uint8_t
)(
saddr
>>
(((
length
-
1
)
-
i
)
*
8
));
buf
[
i
]
=
(
uint8_t
)(
saddr
>>
(((
length
-
1
)
-
i
)
*
8
));
}
}
...
...
This diff is collapsed.
Click to expand it.
tests/driver_nrf24l01p_lowlevel/main.c
+
2
−
1
View file @
87b0477b
...
@@ -113,6 +113,7 @@ char rx_handler_stack[THREAD_STACKSIZE_MAIN];
...
@@ -113,6 +113,7 @@ char rx_handler_stack[THREAD_STACKSIZE_MAIN];
/* RX handler that waits for a message from the ISR */
/* RX handler that waits for a message from the ISR */
void
*
nrf24l01p_rx_handler
(
void
*
arg
)
void
*
nrf24l01p_rx_handler
(
void
*
arg
)
{
{
(
void
)
arg
;
msg_t
msg_q
[
1
];
msg_t
msg_q
[
1
];
msg_init_queue
(
msg_q
,
1
);
msg_init_queue
(
msg_q
,
1
);
unsigned
int
pid
=
thread_getpid
();
unsigned
int
pid
=
thread_getpid
();
...
@@ -209,7 +210,7 @@ int cmd_send(int argc, char **argv)
...
@@ -209,7 +210,7 @@ int cmd_send(int argc, char **argv)
char
tx_buf
[
NRF24L01P_MAX_DATA_LENGTH
];
char
tx_buf
[
NRF24L01P_MAX_DATA_LENGTH
];
/* fill TX buffer with numbers 32..1 */
/* fill TX buffer with numbers 32..1 */
for
(
in
t
i
=
0
;
i
<
sizeof
(
tx_buf
);
i
++
)
{
for
(
size_
t
i
=
0
;
i
<
sizeof
(
tx_buf
);
i
++
)
{
tx_buf
[
i
]
=
NRF24L01P_MAX_DATA_LENGTH
-
i
;
tx_buf
[
i
]
=
NRF24L01P_MAX_DATA_LENGTH
-
i
;
}
}
/* power on the device */
/* power on the device */
...
...
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