Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

flight,uavomanager: Misplaced now, wasted ~3% CPU on F3. #2201

Merged
merged 1 commit into from
May 15, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 1 addition & 3 deletions flight/UAVObjects/uavobjectmanager.c
Original file line number Diff line number Diff line change
Expand Up @@ -1734,15 +1734,13 @@ static int32_t pumpOneEvent(UAVObjEvent msg, void *obj_data, int len) {
struct ObjectEventEntryThrottled *throtInfo =
(struct ObjectEventEntryThrottled *) event;

uint32_t now = PIOS_Thread_Systime();

if (!PIOS_Thread_Period_Elapsed(throtInfo->when,
throtInfo->interval)) {
continue;
}

// Set time for next callback
throtInfo->when = now;
throtInfo->when = PIOS_Thread_Systime();

if (throtInfo->inhibited) {
continue;
Expand Down