-
Notifications
You must be signed in to change notification settings - Fork 26
Idle loop #2
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
Merged
Merged
Idle loop #2
Changes from 6 commits
Commits
Show all changes
8 commits
Select commit
Hold shift + click to select a range
89e6c92
add example for Idle loop
aashishc1988 7555204
Revert "add example for Idle loop"
aashishc1988 e405605
add example for Idle loop
aashishc1988 cc20e62
fix some comments
aashishc1988 9840189
editor fiasco
aashishc1988 39f9f26
improve comments
aashishc1988 597bf34
Copy edit README.md
94063ea
Fix capitalization in main.cpp
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
# IdleLoop example # | ||
|
||
Idle Loop usage example for mbed OS | ||
|
||
This is an example showing the purpose of Idle Loop thread that is scheduled when no other threads are ready to run. In this example, we have a regular thread that is scheduled to run every | ||
5 seconds, and meanwhile, since no other thread is scheduled to run, the idle loop runs and toggles the LED. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
#include "mbed.h" | ||
#include "rtos_idle.h" | ||
|
||
// led for main thread | ||
DigitalOut led2(LED2); | ||
// led for idle thread | ||
DigitalOut led1(LED1); | ||
LowPowerTicker watchdogTicker; | ||
Thread watchdogThread; | ||
EventQueue watchdogQueue; | ||
|
||
void watchdogRefreshHandler() { | ||
led2 = !led2; | ||
}; | ||
|
||
void watchdogRefreshIsr() { | ||
watchdogQueue.call(callback(&watchdogRefreshHandler)); | ||
}; | ||
|
||
void new_idle_loop() | ||
{ | ||
// Executes when no other thread is running | ||
led1 = !led1; | ||
} | ||
|
||
int main() { | ||
|
||
watchdogThread.start(callback(&watchdogQueue, &EventQueue::dispatch_forever)); | ||
watchdogTicker.attach(callback(&watchdogRefreshIsr), 5); | ||
rtos_attach_idle_hook(&new_idle_loop); | ||
} |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.