-
Notifications
You must be signed in to change notification settings - Fork 131
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
Introduce optional javascript semantics for event handling #418
Open
tballmsft
wants to merge
36
commits into
master
Choose a base branch
from
js-event-semantics
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from 5 commits
Commits
Show all changes
36 commits
Select commit
Hold shift + click to select a range
9dedea4
Introduce optional javascript semantics for event handling
finneyj 69bf72e
Update string print() method to avoid unecessary delays
finneyj b1cb519
Simplify implementation of fiber_wake_on_event()
finneyj 6112d74
MicroBitMessageBus::process() updated to pass events by value
finneyj ca43746
Ensure MicroBitDisplay::waitForFreeDisplay() is free of race conditions
finneyj 31fea82
Change Fiber lists to be singly-linked
finneyj 60d423e
Ignore .vscode metadata
finneyj 1c1426f
Introduce FiberTable stucture
finneyj 461fb33
Integrate optional fiber meta-data contributed in #424
finneyj 07f07fb
Ensure Fiber stack allocation happens in the context of that Fiber
finneyj b71334e
Add user define limit to size of FiberPool
finneyj b9816a4
Reintroduce validation test in fiber_sleep()
finneyj 226bf9c
Replace FiberTable with a list of all fibers to save memory
finneyj 92c6cc6
Allow overriding of the heap allocator and getting heap sizes
finneyj 7413352
Introduce optional javascript semantics for event handling
finneyj c9c98be
Update string print() method to avoid unecessary delays
finneyj b28dba4
MicroBitMessageBus::process() updated to pass events by value
finneyj 77d679c
Ensure MicroBitDisplay::waitForFreeDisplay() is free of race conditions
finneyj c04b1fd
Merge branch 'js-event-semantics' of https://www.github.com/lancaster…
finneyj 8075eab
.gitignore vscode metadata
finneyj 25e1e10
Add Fiber->user_data and list_fiber()
mmoskal 92d0cee
Allow overriding of the heap allocator and getting heap sizes
mmoskal 415e5eb
Compilation fixes
mmoskal 15ebed2
Add fiber_user_data to yotta mappings; fix some errors
mmoskal d823d4b
Rename list pointers in MicroBitFiber.h
finneyj c42776c
Merge branch 'pxtgc' into js-event-semantics
finneyj 219feb8
Remove list_fibers API
finneyj 3ed3674
Add CONFIG flag to indicate use of get_fiber_list() API
finneyj 76538ef
Re-enumerate component ID values to align with CODAL
finneyj f96a390
Use schedule() not fiber_sleep(0) in MicroBitSerial.cpp (Fix #461)
finneyj dd339a7
Honour delay parameter in MicroBitDisplay::print(MicroBitImage)
finneyj 0fd4a80
Correctly initialise animation timer for printChar() Fix #463
finneyj 3bccdd6
Ensure consistent behaviour of MicroBitDisplay::print() operations
finneyj 673228f
Align print() semantics with previous versions
finneyj 2443beb
Align MICROBIT_PIN_EVENT_ON_* with codal
mmoskal e5b6741
Align allocateNotifyEvent() API with codal
finneyj 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 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
This file contains 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
This file contains 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,66 @@ | ||
/* | ||
The MIT License (MIT) | ||
|
||
Copyright (c) 2016 British Broadcasting Corporation. | ||
This software is provided by Lancaster University by arrangement with the BBC. | ||
|
||
Permission is hereby granted, free of charge, to any person obtaining a | ||
copy of this software and associated documentation files (the "Software"), | ||
to deal in the Software without restriction, including without limitation | ||
the rights to use, copy, modify, merge, publish, distribute, sublicense, | ||
and/or sell copies of the Software, and to permit persons to whom the | ||
Software is furnished to do so, subject to the following conditions: | ||
|
||
The above copyright notice and this permission notice shall be included in | ||
all copies or substantial portions of the Software. | ||
|
||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL | ||
THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING | ||
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER | ||
DEALINGS IN THE SOFTWARE. | ||
*/ | ||
|
||
/** | ||
* A simple lock, mostly used for mutual exclusion. | ||
*/ | ||
|
||
#ifndef MICROBIT_LOCK_H | ||
#define MICROBIT_LOCK_H | ||
|
||
#include "MicroBitConfig.h" | ||
|
||
class Fiber; | ||
|
||
class MicroBitLock | ||
{ | ||
private: | ||
bool locked; | ||
Fiber *queue; | ||
|
||
public: | ||
|
||
/** | ||
* Create a new lock that can be used for mutual exclusion and condition synchronisation. | ||
*/ | ||
MicroBitLock(); | ||
|
||
/** | ||
* Block the calling fiber until the lock is available | ||
**/ | ||
void wait(); | ||
|
||
/** | ||
* Release the lock, and signal to one waiting fiber to continue | ||
*/ | ||
void notify(); | ||
|
||
/** | ||
* Release the lock, and signal to all waiting fibers to continue | ||
*/ | ||
void notifyAll(); | ||
}; | ||
|
||
#endif |
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@finneyj what's the overhead implications of this change?