-
-
Notifications
You must be signed in to change notification settings - Fork 2
Implemented YMODEM for embedded target #1
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
Closed
Closed
Changes from all commits
Commits
Show all changes
9 commits
Select commit
Hold shift + click to select a range
7fd49d4
Implemented YMODEM for embedded target
ejka-inapril d8c8e48
add back alloc for format!
ejka-inapril 7a86b48
core::alloc
ejka-inapril 5fb882f
change format! to write!
ejka-inapril 1980e7f
use Consts variants
ejka-inapril e435296
add embedded-io-async dependency
ejka-inapril bfb4019
added pub common back
ejka-inapril 7ac384e
add missing feature in #[cfg] macro
ejka-inapril 8b9fefe
Remove anyhow crate, Error changes
ejka-inapril 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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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 |
|---|---|---|
|
|
@@ -4,23 +4,32 @@ readme = "README.md" | |
| repository = "https://github.com/Cosmo-CoDiOS/txmodems" | ||
| description = "Rust library for various MODEM file transfer protocols" | ||
| categories = ["embedded"] | ||
| keywords = ["data-transfer", "MODEM", "file-transfer", "embedded"] | ||
| version = "0.1.3" | ||
| authors = ["Dom Rodriguez <shymega@shymega.org.uk>"] | ||
| keywords = ["serial", "xmodem", "ymodem", "data-transfer", "MODEM", "file-transfer", "embedded"] | ||
| version = "0.2.1" | ||
| authors = [ | ||
| "Dom Rodriguez <shymega@shymega.org.uk>", | ||
| "Eliud de León <eliud.deleon.10@gmail.com>", | ||
| "Eskild Jonatan Krumsvik Aanensen <eskild.krumsvik.aanensen@inapril.com>", | ||
| ] | ||
| license = "MIT" | ||
| edition = "2021" | ||
|
|
||
| [package.metadata.docs.rs] | ||
| all-features = true | ||
|
|
||
| [features] | ||
| default = [] | ||
| default = ["ymodem", "async", "defmt"] | ||
| xmodem = [] | ||
| ymodem = [] | ||
| zmodem = [] | ||
| async = ["embedded-io-async"] | ||
|
|
||
| [dependencies] | ||
| # anyhow = { version = "1.0.75", default-features = false } | ||
| core2 = { version = "0.4.0", default-features = false } | ||
| embedded-io-async = { version = "0.6.1", optional = true } | ||
| embedded-io = { version = "0.6.1" } | ||
| crc16 = "0.4.0" | ||
| defmt = { version = "0.3", optional = true } | ||
|
shymega marked this conversation as resolved.
|
||
| heapless = "0.8.0" | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Why do we need this? |
||
| thiserror-no-std = "2.0.2" | ||
| anyhow = { version = "1.0.75", default-features = false } | ||
Oops, something went wrong.
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.