No description
Find a file
Ronny Nilsson 55ace08066 Update feed [ feed_inteno_packages ] package [ dectmngr2 ]
-------------------------------------------------------------------------------
* 3191d38 - Dynamic allocation and freeing of wait queue buffer when third party connect/disconnects. - Remove debug printouts. - Prohibit continous registrations. - Cleanups
* 7db8582 Use proper enums instead of magic numbers
* 682eb2a Testing in combination with Gigaset elements v2.4.2 shows 50ms works better as a delay for ULE sensor registration.
* 1dbf4f7 Increase packet inter delay
* 31278b0 Workaround (ugly) for third party apps which send multiple mails simultaneously in one packet.
* f74984c Set delay between internal Dect packets low due to ULE otherwise doesn't work... Something timing critical in Natalie makes registration of sensors to otherwise fail.
* dd3939b Extend busmail protocol API with a configuration option. For each busmail/rawmail connection we can set individual protocol options.
* 6dbaaec Make the delay between each send message dynamic. Keep a timestamp of last transmisstion and before next transmitt we sleep only if not enough time has already passed.
* 78f7748 Restore handset standard PIN and add comment
* 86ae799 Natalie can auto-disable registration after one paired handset.
* 316647e Add recognition of ULE packets
*   33d84c2 Merge branch 'master' into ronny_gigaset
|\
| * 7a0f1ca Add ubus dummy for building without ubus library
| * fa9cd96 Pad every busmail packet with dummy data to force flush in dect chip.
| * 2a4d666 Ability to build dectmngr2 without ubus, for factory production.
* 29eb971 WIP for #9729 where registration of some sensors fail.
-------------------------------------------------------------------------------
commit 3191d38385c8e46c3888859f196e41c7db4447bc
Author: Ronny Nilsson <ronny.nilsson@inteno.se>
Date: 2016-10-31 13:32:17 +0100

    - Dynamic allocation and freeing of wait queue buffer when third party
    connect/disconnects. - Remove debug printouts. - Prohibit continous
    registrations. - Cleanups

Base directory -> /
 src/rawmailproxy.c | 100 ++++++++++++++++++++++++++++++-----------------------
 1 file changed, 56 insertions(+), 44 deletions(-)
-------------------------------------------------------------------------------
commit 7db8582e89ce58b82450fc0329340f6a294220d3
Author: Ronny Nilsson <ronny.nilsson@inteno.se>
Date: 2016-10-31 11:51:56 +0100

    Use proper enums instead of magic numbers

Base directory -> /
 src/connection_init.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
-------------------------------------------------------------------------------
commit 682eb2a006d00d6909fc5164c2e2483da3dc21dd
Author: Ronny Nilsson <ronny.nilsson@inteno.se>
Date: 2016-10-28 16:17:38 +0200

    Testing in combination with Gigaset elements v2.4.2 shows 50ms works better
    as a delay for ULE sensor registration.

Base directory -> /
 src/connection_init.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
-------------------------------------------------------------------------------
commit 1dbf4f767325fb31b24490b1d43267e83956791e
Author: Ronny Nilsson <ronny.nilsson@inteno.se>
Date: 2016-10-26 12:27:11 +0200

    Increase packet inter delay

Base directory -> /
 src/connection_init.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
-------------------------------------------------------------------------------
commit 31278b063273be77ecb97d764a7f9d6a326d329e
Author: Ronny Nilsson <ronny.nilsson@inteno.se>
Date: 2016-10-26 12:26:59 +0200

    Workaround (ugly) for third party apps which send multiple mails
    simultaneously in one packet.

Base directory -> /
 src/rawmailproxy.c | 208 ++++++++++++++++++++++++++++++++++-------------------
 1 file changed, 135 insertions(+), 73 deletions(-)
-------------------------------------------------------------------------------
commit f74984c7e5d41d090a9c407dab307b4acea15a28
Author: Ronny Nilsson <ronny.nilsson@inteno.se>
Date: 2016-10-26 09:34:32 +0200

    Set delay between internal Dect packets low due to ULE otherwise doesn't
    work... Something timing critical in Natalie makes registration of sensors
    to otherwise fail.

Base directory -> /
 src/connection_init.c | 4 ++++
 1 file changed, 4 insertions(+)
-------------------------------------------------------------------------------
commit dd3939bec4c60838bd2165c28d1c46b25510751f
Author: Ronny Nilsson <ronny.nilsson@inteno.se>
Date: 2016-10-26 09:30:43 +0200

    Extend busmail protocol API with a configuration option. For each
    busmail/rawmail connection we can set individual protocol options.

Base directory -> /
 src/app.c     | 2 ++
 src/busmail.c | 7 +++++++
 src/busmail.h | 6 ++++++
 3 files changed, 15 insertions(+)
-------------------------------------------------------------------------------
commit 6dbaaeca8575c5063f4257abef68191d0eb172da
Author: Ronny Nilsson <ronny.nilsson@inteno.se>
Date: 2016-10-26 09:27:30 +0200

    Make the delay between each send message dynamic. Keep a timestamp of last
    transmisstion and before next transmitt we sleep only if not enough time has
    already passed.

Base directory -> /
 src/rawmail.c | 48 +++++++++++++++++++++++++++++++++++++++++-------
 src/rawmail.h |  1 +
 2 files changed, 42 insertions(+), 7 deletions(-)
-------------------------------------------------------------------------------
commit 78f774833ddb1c447d2fd71e42dd708475e49318
Author: Ronny Nilsson <ronny.nilsson@inteno.se>
Date: 2016-10-26 09:24:10 +0200

    Restore handset standard PIN and add comment

Base directory -> /
 src/connection_init.c | 6 ++----
 1 file changed, 2 insertions(+), 4 deletions(-)
-------------------------------------------------------------------------------
commit 86ae79960db54342b5be6f926dfddec03d185444
Author: Ronny Nilsson <ronny.nilsson@inteno.se>
Date: 2016-10-26 09:23:16 +0200

    Natalie can auto-disable registration after one paired handset.

Base directory -> /
 src/connection_init.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
-------------------------------------------------------------------------------
commit 316647e67f5b0b51345efff8c4d0787b73787b50
Author: Ronny Nilsson <ronny.nilsson@inteno.se>
Date: 2016-10-26 09:20:31 +0200

    Add recognition of ULE packets

Base directory -> /
 src/api_parser.c | 45 +++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 45 insertions(+)
-------------------------------------------------------------------------------
commit 33d84c254313e02ce15b090fb868e5f65c7b305d
Author: Ronny Nilsson <rln@ronnylap>
Date: 2016-10-19 11:10:43 +0200

    Merge branch 'master' into ronny_gigaset

    Conflicts:
    src/connection_init.c

Base directory -> /
 src/Makefile          |   6 +-
 src/busmail.c         |  11 +-
 src/connection_init.c | 386 ++++++++++++++++++++++++++++++++++++++++----------
 src/connection_init.h |   3 +
 src/debugger.c        |  10 +-
 src/error.c           |  11 +-
 src/handset.c         |   5 +-
 src/main.c            |   5 +
 src/rawmailproxy.c    |   2 +-
 src/ubus-dummy.c      |  60 ++++++++
 src/ubus.c            |   8 ++
 src/ubus.h            |  11 +-
 12 files changed, 418 insertions(+), 100 deletions(-)
-------------------------------------------------------------------------------
commit 7a0f1caa2a0d0241d7682dbe65edb7dceadc4e63
Author: Ronny Nilsson <ronny.nilsson@inteno.se>
Date: 2016-10-18 13:33:33 +0200

    Add ubus dummy for building without ubus library

Base directory -> /
 src/ubus-dummy.c | 60 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 60 insertions(+)
-------------------------------------------------------------------------------
commit fa9cd963e01519736d4f2493ece0d942ac7463c9
Author: Ronny Nilsson <ronny.nilsson@inteno.se>
Date: 2016-10-17 16:52:28 +0200

    Pad every busmail packet with dummy data to force flush in dect chip.

Base directory -> /
 src/busmail.c | 9 ++++++++-
 1 file changed, 8 insertions(+), 1 deletion(-)
-------------------------------------------------------------------------------
commit 2a4d666aeccb4b4e7e3a1d7622ba05c529ff765d
Author: Ronny Nilsson <ronny.nilsson@inteno.se>
Date: 2016-10-17 16:51:16 +0200

    Ability to build dectmngr2 without ubus, for factory production.

Base directory -> /
 src/Makefile          |  6 +++++-
 src/connection_init.c |  5 ++++-
 src/handset.c         |  3 ++-
 src/ubus.c            |  8 ++++++++
 src/ubus.h            | 11 +++--------
 5 files changed, 22 insertions(+), 11 deletions(-)
-------------------------------------------------------------------------------
commit 29eb971b2fa57b64d5ae8e238e3d319e63ae0d70
Author: Ronny Nilsson <rln@ronnylap>
Date: 2016-10-10 11:15:37 +0200

    WIP for #9729 where registration of some sensors fail.

Base directory -> /
 src/connection_init.c |  41 ++++++++++++--
 src/handset.c         |   3 +-
 src/rawmailproxy.c    | 154 ++++++++++++++++++++++++++++++++++++++++++++++++--
 3 files changed, 187 insertions(+), 11 deletions(-)
-------------------------------------------------------------------------------
2016-10-31 13:38:57 +01:00
4g-support 4g-support: send hotplug.usb events with dongle details 2016-06-10 17:30:34 +02:00
asterisk-1.8.x-mod updated asterisk init file to use network.sh 2016-10-26 10:52:26 +02:00
bootchart2 Add bootchart2. 2016-03-11 20:59:14 +01:00
catv changed back config from 0/1 to no/yes for backwords compability reasons 2016-08-31 15:27:01 +02:00
crashlog crashlog: put into syslog that we have received a file. 2015-09-24 13:15:44 +02:00
dectmngr dectmngr v1.0.23 2016-07-08 19:46:53 +02:00
dectmngr2 Update feed [ feed_inteno_packages ] package [ dectmngr2 ] 2016-10-31 13:38:57 +01:00
endptcfg Add OPEN config parameters to the kconfig system 2016-04-15 11:39:13 +02:00
eventlog eventlog package 2016-09-12 12:46:25 +02:00
gigaset-elements gigaset-elements 2.4.2 - dg400 integration, dectmngr2 support 2016-10-28 13:48:23 +02:00
ice-client ice-client-4.0.1RC17 2016-10-20 10:46:28 +02:00
icgroupd icgroupd: Disable RT-scheduling control due to mips malfunction 2016-04-20 10:24:12 +02:00
icwmp icwmp-3.0-2016-10-20 2016-10-21 12:06:32 +02:00
ifsi Fix circular dependency 2015-09-01 10:39:16 +02:00
inotify-tools Add inotify-tools, iop_write_monitor. 2016-02-25 18:19:22 +01:00
inteno-netmodes inteno-netmodes: remove repeater modes from dg, eg, vg 2016-10-21 14:44:01 +02:00
iop iop: config: do not select bind-host by default refs #10380 2016-10-24 20:17:56 +02:00
iup iup: remove unnecessary echos 2016-10-24 20:20:05 +02:00
iwatchdog Creashlog: handle default values. 2015-09-21 16:01:57 +02:00
layer2interface changed the init order of layer2 and port-mgmt scripts 2016-10-19 14:31:46 +02:00
libcgroup libcgroup: Add missing dependency on librt 2016-06-08 15:49:44 +02:00
libstrophe libstrophe: rename base64_decode/encode functions 2016-07-05 14:42:41 +02:00
lmbench lmbench again. for real this time. 2016-09-02 15:07:05 +02:00
mtd-utils Update feed [ feed_inteno_packages ] package [ mtd-utils ] 2016-02-25 16:47:39 +01:00
multiwan multiwan: add missing ip rules 2016-10-20 15:46:05 +02:00
natalie-dect natalie-dect v12.13 2016-07-08 19:46:53 +02:00
natalie-dect-h Updated Natalie to version 12.26 2016-07-08 19:46:53 +02:00
ndisc ndisc package 2016-09-09 15:08:07 +02:00
peripheral_manager Update feed [ feed_inteno_packages ] package [ peripheral_manager ] 2016-09-13 13:47:51 +02:00
picolisp add picolisp-3.1.10 2016-02-29 21:39:17 +01:00
port-management split out sfp to its own init.d file fix #10536 2016-10-27 17:42:14 +02:00
power-management power-management: replace unexisting pwrctl command with correct one 2016-02-29 10:07:06 +01:00
questd questd-3.1.22 2016-10-26 18:28:44 +02:00
samba2 samba2: set --with-included-popt 2016-07-05 17:04:35 +02:00
samba3 samba3: triggered by interface events 2016-09-14 13:27:15 +02:00
sipcalc add sipcalc package 2015-12-18 11:18:47 +01:00
speedtest-cli Merged some of the quarantine files 2015-06-23 17:27:14 +02:00
syslog-ng3 syslong-ng3: depend on libeventlog 2016-09-12 12:46:25 +02:00
tptest Changed Makefiles to use HTTP URLs. 2016-02-19 11:24:32 +01:00
uboot Update feed [ feed_inteno_packages ] package [ u-boot ] 2016-09-20 14:18:43 +02:00
ubus-mqtt Changed Makefiles to use HTTP URLs. 2016-02-19 11:24:32 +01:00
voice-client Ticket #10068 Handle blocking of special rate calls. 2016-10-26 13:36:17 +02:00
voicesec replaced ihgsp and iopsys urls 2016-03-09 16:13:34 +01:00
wifimngr update package dependencies for ice-client and wifimngr 2016-04-06 13:36:07 +02:00