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
a46907fe
Commit
a46907fe
authored
7 years ago
by
kYc0o
Browse files
Options
Downloads
Patches
Plain Diff
drivers/include/sx127x.h: fix power var len
parent
e0170336
Branches
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
drivers/include/sx127x.h
+2
-2
2 additions, 2 deletions
drivers/include/sx127x.h
with
2 additions
and
2 deletions
drivers/include/sx127x.h
+
2
−
2
View file @
a46907fe
...
...
@@ -208,7 +208,7 @@ enum {
*/
typedef
struct
{
uint16_t
preamble_len
;
/**< Length of preamble header */
u
int8_t
power
;
/**< Signal power */
int8_t
power
;
/**< Signal power */
uint8_t
bandwidth
;
/**< Signal bandwidth */
uint8_t
datarate
;
/**< Spreading factor rate, e.g datarate */
uint8_t
coderate
;
/**< Error coding rate */
...
...
@@ -616,7 +616,7 @@ uint8_t sx127x_get_tx_power(const sx127x_t *dev);
* @param[in] dev The sx127x device descriptor
* @param[in] power The TX power
*/
void
sx127x_set_tx_power
(
sx127x_t
*
dev
,
u
int8_t
power
);
void
sx127x_set_tx_power
(
sx127x_t
*
dev
,
int8_t
power
);
/**
* @brief Gets the SX127X preamble length
...
...
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