mirror of
https://github.com/slsdetectorgroup/slsDetectorPackage.git
synced 2025-06-13 05:17:13 +02:00
binaries in after merge
This commit is contained in:
@ -26,7 +26,11 @@ This document describes the differences between v6.1.0 and v6.0.0.
|
|||||||
- refactoring (rxr)
|
- refactoring (rxr)
|
||||||
- fixed patsetbit and patsetmask for moench
|
- fixed patsetbit and patsetmask for moench
|
||||||
- changed default vref of adc9257 to 2V for moench (from 1.33V)
|
- changed default vref of adc9257 to 2V for moench (from 1.33V)
|
||||||
|
<<<<<<< HEAD
|
||||||
- moench and ctb - can set the starting frame number of next acquisition
|
- moench and ctb - can set the starting frame number of next acquisition
|
||||||
|
=======
|
||||||
|
- mythen server kernel check incompatible (cet timezone)
|
||||||
|
>>>>>>> developer
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -76,6 +76,11 @@ int getTimeFromString(char *buf, time_t *result) {
|
|||||||
LOG(logDEBUG, ("kernel v %s\n", buffer));
|
LOG(logDEBUG, ("kernel v %s\n", buffer));
|
||||||
const char *timezone = {"CEST"};
|
const char *timezone = {"CEST"};
|
||||||
char *res = strstr(buffer, timezone);
|
char *res = strstr(buffer, timezone);
|
||||||
|
// remove CET as well
|
||||||
|
if (res == NULL) {
|
||||||
|
strcpy(timezone, "CET");
|
||||||
|
res = strstr(buffer, timezone);
|
||||||
|
}
|
||||||
if (res != NULL) {
|
if (res != NULL) {
|
||||||
size_t cestPos = res - buffer;
|
size_t cestPos = res - buffer;
|
||||||
size_t pos = cestPos + strlen(timezone) + 1;
|
size_t pos = cestPos + strlen(timezone) + 1;
|
||||||
|
Reference in New Issue
Block a user