-
-
Notifications
You must be signed in to change notification settings - Fork 513
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
Make hoymiles library usable for other architectures #103
base: master
Are you sure you want to change the base?
Make hoymiles library usable for other architectures #103
Conversation
…rser.cpp to avoid compiler warnings f
…nctions from hardware
…ch didn't have the FunctionalInterrupt-implementation. This should be okay as we support only one Radio.
156cddd
to
54786f1
Compare
Updated base to current master. Best regards |
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.
Multiple radio requirement is on the horizon.
Currently reverse engineering of HMS series inverters is ongoing, which require different radio hardware.
@greenflash1986 thanks for your efforts. Given that OpenDTU is targeted for the ESP32 architecture/platform only at the moment, not even ESP8266, I do not see this PR going anywhere soon. Though it may serve as an exercise for the future. |
Hi @tbnobody first of all thanks for the great work.
After I were unable to log my supply from my inverter with the Voltcraft plug, I stumpled accross the thread on Mikrocontroller. The work done there is very appreciated and although I'm unable to remember all the posts I where able to find the two repositories.
Now I want to use my spare Atmega328PB for the logging and I found your repository with the library approach the most promising. Although I don't know if the Atmega has enough speed or RAM (currently the Atmega-branch with only a simple main builds with >4kb and the Atmega only has 2kb) I already did some things to make the hoymiles library compile for the
atmelavr
-toolchain.This PR is a request for comments: it's an idea to make things working for multiple platforms and maybe you want to change the library code in such a manner. I'm a software developer but my embedded skills and C++ knowledge is very limited. Therefore I would not assume that my code is correct in all details.
Please have a look and feel free to comment.
Best regards
GreenFlash1986