-
Notifications
You must be signed in to change notification settings - Fork 216
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
Opentherm controller esp32 #2135
Conversation
@@ -57,6 +57,8 @@ static_cell = { version = "2.1.0", features = ["nightly"] } | |||
usb-device = "0.3.2" | |||
usbd-serial = "0.2.2" | |||
|
|||
opentherm_boiler_controller_lib = { version = "0.1.0", path = "/home/cooler1989/projects/rusty_boiler/boiler_controller_ot_lib", features = [] } |
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.
I'd like to ask you not to please do not add a dependency that lives on your filesystem.
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.
I am sorry - it was not intended to be public. At least not yet. I was suppose to push I lt to private fork.
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.
This PR, or that dependency?
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.
This whole PR. Can one delete it so it does not pollute this repository even in the history?
static RECEIVED_COUNT: Mutex<RefCell<Option<u32>>> = | ||
Mutex::new(RefCell::new(None)); | ||
|
||
static RECEIVED_DATA : critical_section::Mutex<RefCell<Option<[PulseCode; 48]>>> = |
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.
If this isn't a different Mutex type than above, please do not specifiy the whole path to it.
Thank you for your contribution!
We appreciate the time and effort you've put into this pull request.
To help us review it efficiently, please ensure you've gone through the following checklist:
Submission Checklist 📝
cargo xtask fmt-packages
command to ensure that all changed code is formatted correctly.CHANGELOG.md
in the proper section.Extra:
Pull Request Details 📖
Description
Please provide a clear and concise description of your changes, including the motivation behind these changes. The context is crucial for the reviewers.
Testing
Describe how you tested your changes.