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
0aa12b9f
Commit
0aa12b9f
authored
6 years ago
by
Leandro Lanzieri
Browse files
Options
Downloads
Patches
Plain Diff
pkg/semtech-loramac: Reduce timeout in timer
parent
917548f3
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
pkg/semtech-loramac/contrib/semtech_loramac_timer.c
+4
-3
4 additions, 3 deletions
pkg/semtech-loramac/contrib/semtech_loramac_timer.c
with
4 additions
and
3 deletions
pkg/semtech-loramac/contrib/semtech_loramac_timer.c
+
4
−
3
View file @
0aa12b9f
...
@@ -62,9 +62,10 @@ void TimerSetValue(TimerEvent_t *obj, uint32_t value)
...
@@ -62,9 +62,10 @@ void TimerSetValue(TimerEvent_t *obj, uint32_t value)
/* According to the lorawan specifications, the data sent from the gateway
/* According to the lorawan specifications, the data sent from the gateway
could arrive with a short shift in time of +/- 20ms. Here the timeout is
could arrive with a short shift in time of +/- 20ms. Here the timeout is
triggered 22ms in advance to make sure the radio switches to RX mode on
triggered 50ms in advance to make sure the radio switches to RX mode on
time and doesn't miss any downlink messages. */
time and doesn't miss any downlink messages, taking in consideration
obj
->
timeout
=
(
value
-
22
)
*
US_PER_MS
;
possible xtimer inaccuracies. */
obj
->
timeout
=
(
value
-
50
)
*
US_PER_MS
;
}
}
TimerTime_t
TimerGetCurrentTime
(
void
)
TimerTime_t
TimerGetCurrentTime
(
void
)
...
...
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