Search found 162 matches

by sblair
Tue May 19, 2015 12:29 pm
Forum: NetBurner Software
Topic: RTC and TimeZones (shoot me now)
Replies: 7
Views: 4928

Re: RTC and TimeZones (shoot me now)

Paul, What kind of time drift do you typically see from the PCF8563? I'm noticing that I'm getting about a 6-7 second drift just overnight of it running fast. Here's my test scenario. When I power up I check for an NTP server. If I can connect to one then I update SystemTime and then update the RTC ...
by sblair
Mon May 18, 2015 5:50 pm
Forum: NetBurner Software
Topic: RTC and TimeZones (shoot me now)
Replies: 7
Views: 4928

Re: RTC and TimeZones (shoot me now)

Sure Paul. You're absolutely welcome to use it! I would suggest including the websites I had in there too as it took quite a while to find sites that actually had useful information. I'm glad I chose the tzchar() for doing the offsets. I would suggest fixing the tzchar() function to handle non-DST z...
by sblair
Mon May 18, 2015 4:24 pm
Forum: NetBurner Software
Topic: RTC and TimeZones (shoot me now)
Replies: 7
Views: 4928

Re: RTC and TimeZones (shoot me now)

In an effort to save the next poor sap some trouble here is the table of TZ's I built. It was a fair bit of effort as I had to compile data from a number of sources. The list is based off the list of Microsoft supported TimeZones as being a common reference point for most people. The astute observer...
by sblair
Thu May 14, 2015 3:06 pm
Forum: NetBurner Software
Topic: RTC and TimeZones (shoot me now)
Replies: 7
Views: 4928

RTC and TimeZones (shoot me now)

So I ventured into a new topic of implementing RTC (RealTimeClock) functionality in my product using the MOD54415. Since I thought it would be smart to use NTP functionality to update my RTC chip on the occasions when I do have a inet connection this means I have to deal with setting TimeZones. I de...
by sblair
Mon May 04, 2015 5:12 pm
Forum: NetBurner Software
Topic: MOD54415 Max TCP Connections?
Replies: 12
Views: 8898

Re: MOD54415 Max TCP Connections?

I totally understand not wanting to destabilize this release. It's not something that is blocking me at the moment but in 6 months or more from now I will definitely be needing it more I'd say so I'd love to see it on the roadmap for the following release.

Thanks.
Scott
by sblair
Mon May 04, 2015 4:33 pm
Forum: NetBurner Software
Topic: MOD54415 Max TCP Connections?
Replies: 12
Views: 8898

Re: MOD54415 Max TCP Connections?

Long term we plan to add the capability for additional TCP and extra FD sockets up to 100's. I'd be interested in how important this is for every one? This would be HUGE for me!! I'm getting into scenarios here where I need to be able to maintain numerous active TCP connections. In the application ...
by sblair
Mon May 04, 2015 4:14 pm
Forum: NetBurner Software
Topic: MOD54415 Max TCP Connections?
Replies: 12
Views: 8898

Re: MOD54415 Max TCP Connections?

Thanks guys, this discussion was all VERY informative!
by sblair
Fri May 01, 2015 4:31 pm
Forum: NetBurner Software
Topic: MOD54415 Max TCP Connections?
Replies: 12
Views: 8898

MOD54415 Max TCP Connections?

I've got an application where I need to open a lot of Telnet sessions. The Netburner is a Telnet client opening sessions to different devices that are Telnet Servers. I've found I can open and maintain 24 connections without an issue but as I get close to 32 I start having issues as I would expect b...
by sblair
Thu Apr 09, 2015 5:38 pm
Forum: NetBurner Software
Topic: RTC I2C lib issue
Replies: 3
Views: 2348

Re: RTC I2C lib issue

Anyone from Netburner? Dan? Paul? The issue is that in rtc.cpp it has #include <i2cmaster.h>. It needs to be #include <multichanneli2c.h> to properly use the #define DEFAULT_I2C_MODULE (2) for I2C2. Can this be updated so going forward we aren't having to modify lib files? Since rtc.cpp is already t...
by sblair
Wed Apr 08, 2015 3:51 pm
Forum: NetBurner Software
Topic: RTC I2C lib issue
Replies: 3
Views: 2348

Re: RTC I2C lib issue

<crickets..> Okay so now that I've got NNDK 2.7.1 running I'm still seeing the same issue here. Digging further I've changed multichanneli2c.h to have #define DEFAULT_I2C_MODULE (2) so that should reference I2C2 as the default and recompiled system libs. Sprinkling a few iprintf statements in Detect...