-
-
Notifications
You must be signed in to change notification settings - Fork 350
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
Ve-direct driver #440
base: master
Are you sure you want to change the base?
Ve-direct driver #440
Conversation
Sorry for failed CI, fixed now. |
} | ||
|
||
void upsdrv_shutdown(void) | ||
{ |
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.
Is there certainly no session teardown?
|
||
/* list flags and values that you want to receive via -x */ | ||
void upsdrv_makevartable(void) | ||
{ |
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.
Aren't there variables to set up or modify like the port, maybe baud speed (e.g. use a default 19200 but reserve ability to probe related units with other hardware abilities)?
|
||
void upsdrv_help(void) | ||
{ | ||
printf("Read The Fine Manual ('man 8 ve-direct')\n"); |
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.
Related to question on configurable -x
flags - maybe a bit more is to be said here. Maybe at least the standard wall of text with -a
, -D
and other standard flags.
I would prefer that these commits be rebased/squashed rather than merged as-is. The individual commits do not stand on their own. https://github.com/networkupstools/nut/blob/master/docs/developers.txt#L327 |
drivers/ve-direct.c
Outdated
break; | ||
*end = '\0'; | ||
|
||
snprintf(vn, sizeof(vn), "ve-direct.%s", v_name); |
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.
"ve-direct" is not a valid top-level NUT variable name. Please use the standard names defined, and discuss on nut-upsdev if you need anything not covered here: http://networkupstools.org/docs/developer-guide.chunked/apas01.html
|
||
void upsdrv_initups(void) | ||
{ | ||
#ifndef TESTING |
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 TESTING
#define is not handled elsewhere in NUT, but if you include it, I would recommend adding a case to parse a few static text buffers. This will help other developers who might have to maintain the code later down the road.
…ed during fightwarn (so might add regressions) without regard to versioning
… we check for third-party dependencies
…and consult drivers/Makefile.am for list names to require certain dependencies
…sx) drivers - do not default to require them everywhere
…platform-dependent package groups
Working release of Ve-direct driver for Victron Energy UPS/solar panels monitoring.