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
b5cb68bd
Commit
b5cb68bd
authored
8 years ago
by
Peter Kietzmann
Committed by
GitHub
8 years ago
Browse files
Options
Downloads
Plain Diff
Merge pull request #5676 from jasonatran/cc2538_debug
cpu/cc2538: fix debug statements
parents
66b36397
4136b959
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/cc2538/radio/cc2538_rf_getset.c
+2
-2
2 additions, 2 deletions
cpu/cc2538/radio/cc2538_rf_getset.c
with
2 additions
and
2 deletions
cpu/cc2538/radio/cc2538_rf_getset.c
+
2
−
2
View file @
b5cb68bd
...
@@ -184,7 +184,7 @@ void cc2538_set_chan(unsigned int chan)
...
@@ -184,7 +184,7 @@ void cc2538_set_chan(unsigned int chan)
void
cc2538_set_freq
(
unsigned
int
MHz
)
void
cc2538_set_freq
(
unsigned
int
MHz
)
{
{
DEBUG
(
"%s(%u): Setting frequency to "
,
__FUNCTION__
,
freq
);
DEBUG
(
"%s(%u): Setting frequency to "
,
__FUNCTION__
,
MHz
);
if
(
MHz
<
IEEE802154_MIN_FREQ
)
{
if
(
MHz
<
IEEE802154_MIN_FREQ
)
{
MHz
=
IEEE802154_MIN_FREQ
;
MHz
=
IEEE802154_MIN_FREQ
;
...
@@ -250,6 +250,6 @@ void cc2538_set_tx_power(int dBm)
...
@@ -250,6 +250,6 @@ void cc2538_set_tx_power(int dBm)
dBm
=
OUTPUT_POWER_MAX
;
dBm
=
OUTPUT_POWER_MAX
;
}
}
DEBUG
(
"%idBm (range %i-%i dBm)
\n
"
,
OUTPUT_POWER_MIN
,
OUTPUT_POWER_MAX
);
DEBUG
(
"%idBm (range %i-%i dBm)
\n
"
,
dBm
,
OUTPUT_POWER_MIN
,
OUTPUT_POWER_MAX
);
RFCORE_XREG_TXPOWER
=
power_lut
[
dBm
-
OUTPUT_POWER_MIN
];
RFCORE_XREG_TXPOWER
=
power_lut
[
dBm
-
OUTPUT_POWER_MIN
];
}
}
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