similar to: NUT HID device development and testing

Displaying 9 results from an estimated 9 matches similar to: "NUT HID device development and testing"

2023 Mar 30
0
nut-scanner -U: device requirements
Hello, I have a question related to the nut-scanner tool: https://networkupstools.org/docs/man/nut-scanner.html It has an option to: -U | --usb_scan List all NUT-compatible USB devices currently plugged in. I am developing a custom USB HID based ups. I am trying to figure out how to talk to NUT. The first step is how to make nut-scanner to consider my device as "NUT-compatible"
2023 Mar 20
1
Free and well documented NUT driver protocol
Hello there, I am coming to this mailing list as suggested in the Github repo issues panel: https://github.com/networkupstools/nut/issues/1873#issuecomment-1475408950 I would like to create a new UPS device that communicate with the outer world over USB. The USB protocol can be either CDC serial or HID. I am looking for an existing protocol that can be legally used by me, so I don't need
2023 Mar 20
1
Free and well documented NUT driver protocol
On 2023-03-20, ?ukasz Przenios?o <lukasz at przenioslo.com> wrote: > I would like to create a new UPS device that communicate with the outer=20 > world over USB. The USB protocol can be either CDC serial or HID. I am=20 > looking for an existing protocol that can be legally used by me, so I=20 > don't need to come up with a new protocol + ask anyone to add any new=20 >
2023 Mar 30
0
Vertiv UPS
Hi, I didn't see in the HCL any Vertiv support. The specific unit I'm considering is: ( https://www.amazon.com/gp/product/B07BYD6RLN) - "Vertiv Liebert PSA5 1500VA 900W line-Interactive UPS with AVR Technology and Battery Backup, 10 outlets and Three-Year, Full Unit Replacement Warranty (PSA5-1500MT120)" Has anyone worked with this (or even UPS from Vertiv) and had success (or
2023 Mar 30
0
About libvirt domain dump state and persistent state
Hi all, I use libvirt-go in my agent to attach rbd volumes. I ofen suffer the issue of incosistent of domain dump xml and domain persistent xml file. For example, when I try to attach volume, the the domain by ?virConnectListAllDomains? api from libvirt tell me the vdf or 0x0a is empty, but when attach it with the vdf device or 0x0a address, qemu return the error duplicated with vdf or PCI
2023 Mar 30
1
Issue with On Line Status (APC MGE Galaxy 5500 + AP9635CH)
Well thanks, The solution for my problem was kinda easy (still need some testing though): found out my ups status is a string, so then I changed the way snmp-ups.c gets the status. Had to change *nut_snmp_get_int *to *nut_snmp_get_str *at around line 3470, then grab fourth char out, use *strtol *function to then send it to *su_status_set *function. I created my copy of *apc-mib.c *with my OID at
2023 Mar 30
1
write.csv performance improvements?
Dear R-devel, I did a systematic comparison of write.csv with similar functions, and observed two asymptotic inefficiencies that could be improved. 1. write.csv is quadratic time (N^2) in the number of columns N. Can write.csv be improved to use a linear time algorithm, so it can handle CSV files with larger numbers of columns? For more details including figures and session info, please see
2023 Mar 29
1
gluster csi driver
Looking at this code, it's way more than I was looking for, too. I just need a replacement for the in-tree driver. I have a volume. I have about a half dozen pods that use that volume. I just need the same capabilities as the in-tree driver to satisfy that need. I want to use kadalu to replace the hacky thing I'm still doing using hostpath_pv, but last time I checked, it didn't build
2023 Mar 29
1
Issue with On Line Status (APC MGE Galaxy 5500 + AP9635CH)
One good intro to this is https://github.com/networkupstools/nut/blob/master/docs/snmp-subdrivers.txt although it focuses on adding new subdrivers - but more or less the same workflow applies to extending existing ones. Sometimes it helps to generate a new one for a currently-partially-supported device, and then compare with existing subdriver (using meld or similar GUI helps a lot) to port the