-
Notifications
You must be signed in to change notification settings - Fork 214
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
SVBONY CCD firmware and SDK version information logs added #810
Changes from 2 commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,9 @@ | ||
indi-svbony (1.3.8) bionic; urgency=low | ||
|
||
* SVBONY CCD firmware and SDK version information logs added | ||
|
||
-- Tetsuya Kakura <[email protected]> Wed, 2 Jul 2023 06:00:00 +0900 | ||
|
||
indi-svbony (1.3.7) bionic; urgency=low | ||
|
||
* Fixed Conflict of private variables in SVBONYCCD class. | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -109,6 +109,11 @@ class SVBONYCCD : public INDI::CCD | |
// pixel size | ||
float pixelSize; | ||
|
||
// Camera Firmware version number | ||
char cameraFirmwareVersion[65]; | ||
// SVBONY Camera SDK version number | ||
const char* SDKVersion; | ||
Comment on lines
+113
to
+115
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. If you're only using this to report version information once in Connect, is there a reason to keep it as class variable? or is this used elsewhere? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. If EKOS is used, this information is output to the log and need not be retained. |
||
|
||
// hCamera mutex protection | ||
pthread_mutex_t cameraID_mutex; | ||
|
||
|
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.
No need for \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.
I committed it with newline code removed form LOG_ERROR.