You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
After Saving a Configuration under the Options tab, any attempt to Load results in driver crash. If there are no Configuration files in the /home/stellarmate/.indi/ folder, the driver does not crash.
To Reproduce
Exact steps to reproduce the behavior.
Run driver
Save a Configuration tab
Load a Configuration tab
Crash
Expected behavior
I expected the driver to load the configuration I had set up just before clicking "Save"
Screenshots
I have included copies of a fresh configuration file(s) that the driver produces on the first run after deleting the previous configuration files from the /.indi/ folder.
Desktop (please complete the following information):
-StellarMate OS ver 1.8.0 / Stable / SM-110
-Rpi 4 / 8GB
Thank you for the report. I also think the driver is missing configuration for Raspberry PI 5 + CM4. I hope @ken-self knows what's going on, I'll try to also debug from my side.
It appears that this driver should probably migrate to libgpiod. Yesterday, I migrated a driver for my rolloff roof to this and it was pretty easy. For example:
auto chip = gpiod::chip("gpiochip0");
auto open_line = chip.get_line(FULL_OPEN_PIN);
open_line.request({"ikarus_roof", gpiod::line_request::DIRECTION_INPUT, 0});
full_open_state = open_line.get_value();
I've added FindGPIOD.cmake so that 3rd party projects can link against the C++ GPIO bindings.
After Saving a Configuration under the Options tab, any attempt to Load results in driver crash. If there are no Configuration files in the /home/stellarmate/.indi/ folder, the driver does not crash.
To Reproduce
Exact steps to reproduce the behavior.
Expected behavior
Screenshots
I have included copies of a fresh configuration file(s) that the driver produces on the first run after deleting the previous configuration files from the /.indi/ folder.
Desktop (please complete the following information):
-StellarMate OS ver 1.8.0 / Stable / SM-110
-Rpi 4 / 8GB
Log Files
Make sure to enable logging and include log files Rpi_GPIO_INDI_Logs_Crash.zip
The text was updated successfully, but these errors were encountered: