Skip to content

Commit

Permalink
Version 0.0.6
Browse files Browse the repository at this point in the history
 - Added support for CPU version 3.1818.
  • Loading branch information
Jerrythafast committed Jan 23, 2019
1 parent 4a7fddb commit 35d1883
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
6 changes: 5 additions & 1 deletion README.txt
@@ -1,4 +1,4 @@
VERSION 0.0.5
VERSION 0.0.6

===============================================================================
INSTALLATION INSTRUCTIONS
Expand All @@ -9,6 +9,7 @@ commands used. Tested with Ubuntu 16.04, Python 2.7.11, MySQL 5.7.12, PHP 7.0.

1. Install the required system packages:
mysql-server
php-cli
php-mysql
php-curl
python-mysqldb
Expand Down Expand Up @@ -85,6 +86,9 @@ commands used. Tested with Ubuntu 16.04, Python 2.7.11, MySQL 5.7.12, PHP 7.0.
===============================================================================
CHANGELOG

v0.0.6
- Added support for CPU version 3.1818.

v0.0.5
- Added support for CPU version 3.1651.
- Added find-key-in-pcap.py to scan for the encryption key in PCAP files.
Expand Down
2 changes: 1 addition & 1 deletion opt/se-logger/liveupdate.py
Expand Up @@ -331,7 +331,7 @@ def parse0500(data):
'e_day': bytes[6] | (bytes[7] << 8),
'temperature': (bytes[8] | ~0xFF) if bytes[8] & 0x80 else bytes[8]
}
elif type == 0x0010 and length in (124, 174): # Inverter data
elif type == 0x0010 and length in (124, 174, 180): # Inverter data
inv = SEDataInverter.parse(data, pos + 12)
yield {
'inv_id': id & ~0x00800000,
Expand Down

0 comments on commit 35d1883

Please sign in to comment.