-
Notifications
You must be signed in to change notification settings - Fork 0
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
feat: add XEN-L006 (xod/uart additions) #7
base: master
Are you sure you want to change the base?
Conversation
- [in] RST :: Pulse - Empty the accumulated string line and start over | ||
|
||
- [out] LINE :: String - Accumulated line | ||
- [out] LINE :: Pulse - Fires on a new accumulated line |
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.
Two pins can't have the same label. Did you mean something like UPD
?
|
||
## List of nodes | ||
|
||
### accumulate-line |
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.
Hm... we have such node in xod/stream
.
And also it has very important input CAP
(capacity), which is skipped here.
Maybe better to do a handy node accumulate-line
in xod/stream
library, which will be a composition of nodes accumulate-string
and pass-until
?
- [in] READ :: Pulse - Triggers read of a string line ??? | ||
- [in] READ :: Bool - The true value turns on the stream of the string lines ??? | ||
|
||
- [out] LINE :: String - String line that is read ??? |
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.
The same issue with capacity 🤔
The new
accumulate-line
andread
nodes.