2
0
mirror of https://github.com/fhem/fhem-mirror.git synced 2025-04-16 04:36:02 +00:00

CUL_MAX: check for new culfw

git-svn-id: https://svn.fhem.de/fhem/trunk@3057 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
mgehre 2013-04-08 21:00:34 +00:00
parent 6690ebb87e
commit 010b6cb57b

View File

@ -128,7 +128,7 @@ CUL_MAX_Check($@)
$version =~ m/V (.*)\.(.*) .*/;
my ($major_version,$minorversion) = ($1, $2);
$version = 100*$major_version + $minorversion;
if($version < 153) {
if($version < 154) {
Log 2, "You are using an old version of the CUL firmware, which has known bugs with respect to MAX! support. Please update.";
}
return $version;