Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
F
firmware
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
External wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Monitor
Service Desk
Analyze
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
card10
firmware
Commits
e14ba12a
Commit
e14ba12a
authored
4 years ago
by
zenox
Browse files
Options
Downloads
Patches
Plain Diff
use static timer for blink rockets
parent
715aac63
No related branches found
No related tags found
1 merge request
!325
flash_rocket
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
epicardium/modules/leds.c
+4
-2
4 additions, 2 deletions
epicardium/modules/leds.c
with
4 additions
and
2 deletions
epicardium/modules/leds.c
+
4
−
2
View file @
e14ba12a
...
...
@@ -129,6 +129,7 @@ int epic_leds_get_rocket(int led)
return
ret
;
}
static
StaticTimer_t
blink_timer_data
[
3
];
static
TimerHandle_t
blink_timer
[]
=
{
NULL
,
NULL
,
NULL
};
static
void
rocket_timer_callback
(
TimerHandle_t
blink_timer
)
...
...
@@ -142,12 +143,13 @@ void epic_leds_blink_rocket(int led, uint8_t value, int millis)
int
ticks
=
millis
*
(
configTICK_RATE_HZ
/
1000
);
int32_t
id
=
led
;
if
(
blink_timer
[
id
]
==
NULL
)
{
blink_timer
[
id
]
=
xTimerCreate
(
blink_timer
[
id
]
=
xTimerCreate
Static
(
"blinktimer"
,
ticks
,
pdFALSE
,
(
void
*
)
id
,
rocket_timer_callback
rocket_timer_callback
,
&
blink_timer_data
[
id
]
);
epic_leds_set_rocket
(
led
,
value
);
}
...
...
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