forked from pool/rtl_433
Accepting request 538201 from home:mnhauke:sdr-devel
- Update to version 0.0.1+git.20171101: * Add support for Philips outdoor temperature sensor * move fprintf call when timer expires * remove check for DEFAULT_HOP_EVENTS * fix edge-case where bytes_to_read is equal to length of bytes read * Fix output formatting * Added support for Ford car remote. * Removed unused code and variables. * Added a ford car remote decoder for the Fiesta and CMAX. device id is a rolling id number that seems to have approx 64 variations. The meaning of the code fields has not been determined. * Fixed output formatting for JSON and csv * Added decoding of X10 CR12A ON/OFF remote commands * Add support for FT-004-B * Make LaCrosse TX141TH sensors return temperature_C so that they are more consistent with other temperature sensors (#606) * Acurite Rain Gague emit structured data * shortend model string to Inovalley kw9015b * added json-support and description for TFA 30.3161 rain sensor * Fixed do_build.sh: forgot to do 'cd ..' before cloning rtl_433_tests.git * Fixed do_build.sh, .travis.yml trying to run 'make test' * Added tests from rtl_433_tests.git repo * Fixed do_build.sh: don't 'make installe' * Fixed .travis.yml: 'sudo: required', 'dist: trusty' * Fixed .travis.yml: added sudo, added apt.sources * Fixed permissions on do_build.sh * Added draft of .travis.yml, do_build.sh * Use default number of buffers to fix crash of two rtl_433 instances * don't restart the timer if we are aborting anyway; cancel timer on rtlsdr_cancel_async * fix unknown `uint` type; whitespace fixes * add merbanan changes * add suggested optimisation * suggested changes OBS-URL: https://build.opensuse.org/request/show/538201 OBS-URL: https://build.opensuse.org/package/show/hardware:sdr/rtl_433?expand=0&rev=5
This commit is contained in:
parent
38775f184f
commit
79cb0cf965
@ -1,4 +1,4 @@
|
||||
<servicedata>
|
||||
<service name="tar_scm">
|
||||
<param name="url">https://github.com/merbanan/rtl_433.git</param>
|
||||
<param name="changesrevision">1be0118aa74dd2e9d151a0dcb72a2c78d505539d</param></service></servicedata>
|
||||
<param name="changesrevision">2e720e68c445f7c76dc0a045f50f341c24a2af7a</param></service></servicedata>
|
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:8ff0199729676fa4bf84f55e09c176b1c53a7fbb2fdfb6189313a8fcb244de11
|
||||
size 153296
|
3
rtl_433-0.0.1+git.20171101.tar.xz
Normal file
3
rtl_433-0.0.1+git.20171101.tar.xz
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:259a21c29454dbc08a8380ca1f104961686a433759d07f3a828ee390d7a830fc
|
||||
size 158344
|
@ -1,3 +1,52 @@
|
||||
-------------------------------------------------------------------
|
||||
Wed Nov 01 19:58:05 UTC 2017 - mardnh@gmx.de
|
||||
|
||||
- Update to version 0.0.1+git.20171101:
|
||||
* Add support for Philips outdoor temperature sensor
|
||||
* move fprintf call when timer expires
|
||||
* remove check for DEFAULT_HOP_EVENTS
|
||||
* fix edge-case where bytes_to_read is equal to length of bytes read
|
||||
* Fix output formatting
|
||||
* Added support for Ford car remote.
|
||||
* Removed unused code and variables.
|
||||
* Added a ford car remote decoder for the Fiesta and CMAX. device id is a rolling id number that seems to have approx 64 variations. The meaning of the code fields has not been determined.
|
||||
* Fixed output formatting for JSON and csv
|
||||
* Added decoding of X10 CR12A ON/OFF remote commands
|
||||
* Add support for FT-004-B
|
||||
* Make LaCrosse TX141TH sensors return temperature_C so that they are more consistent with other temperature sensors (#606)
|
||||
* Acurite Rain Gague emit structured data
|
||||
* shortend model string to Inovalley kw9015b
|
||||
* added json-support and description for TFA 30.3161 rain sensor
|
||||
* Fixed do_build.sh: forgot to do 'cd ..' before cloning rtl_433_tests.git
|
||||
* Fixed do_build.sh, .travis.yml trying to run 'make test'
|
||||
* Added tests from rtl_433_tests.git repo
|
||||
* Fixed do_build.sh: don't 'make installe'
|
||||
* Fixed .travis.yml: 'sudo: required', 'dist: trusty'
|
||||
* Fixed .travis.yml: added sudo, added apt.sources
|
||||
* Fixed permissions on do_build.sh
|
||||
* Added draft of .travis.yml, do_build.sh
|
||||
* Use default number of buffers to fix crash of two rtl_433 instances
|
||||
* don't restart the timer if we are aborting anyway; cancel timer on rtlsdr_cancel_async
|
||||
* fix unknown `uint` type; whitespace fixes
|
||||
* add merbanan changes
|
||||
* add suggested optimisation
|
||||
* suggested changes
|
||||
* remove test
|
||||
* add infactory sensor
|
||||
* bitbuffer: Handle row overflow a bit more gracefully
|
||||
* pulse_analyzer: Add detection of PWM with multiple packages
|
||||
* explaining dipswitch 2 meaning
|
||||
* message validation fix
|
||||
* shortening output
|
||||
* changes after pull request
|
||||
* Switched to new data API
|
||||
* adding Renault TPMS sensor
|
||||
* adding Ford TPMS sensor
|
||||
* Add option to verify simulated decoding of raw data
|
||||
* reduce false positives by rejecting 0x000000 / 0xffffff
|
||||
* adding Toyota TPMS sensor
|
||||
* reduce false positives, require at least 5 repeats
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sat Jul 08 09:02:24 UTC 2017 - mardnh@gmx.de
|
||||
|
||||
|
@ -16,10 +16,10 @@
|
||||
#
|
||||
|
||||
|
||||
%define version_unconverted 0.0.1+git.20170708
|
||||
%define version_unconverted 0.0.1+git.20171101
|
||||
|
||||
Name: rtl_433
|
||||
Version: 0.0.1+git.20170708
|
||||
Version: 0.0.1+git.20171101
|
||||
Release: 0
|
||||
Summary: Turns RTL2832 dongle into a 433.92MHz generic data receiver
|
||||
License: GPL-2.0
|
||||
|
Loading…
Reference in New Issue
Block a user