Search found 162 matches

by sblair
Wed Dec 23, 2015 2:46 pm
Forum: NetBurner Software
Topic: SNMP Questions
Replies: 4
Views: 7625

Re: SNMP Questions

Thanks Paul. I clearly have a lot of research still to do. If you have any resources you can suggest that would be great. Also any free SNMP Managers out there that I could use just to play with a working SNMP system would be helpful too so I can wireshark it and see how it works. SNMP has always be...
by sblair
Tue Dec 22, 2015 1:03 pm
Forum: NetBurner Software
Topic: SNMP Questions
Replies: 4
Views: 7625

SNMP Questions

I'm new to SNMP and haven't done anything with it yet. It seems most everything to date with NB that I've seen with SNMP, including the SNMP library, revolves around it being a device agent. I'm actually looking at using a Netburner to be the SNMP Manager side. i.e. the Netburner connects via SNMP t...
by sblair
Tue Dec 22, 2015 12:49 pm
Forum: NetBurner Software
Topic: Serial Port Question
Replies: 3
Views: 3766

Re: Serial Port Question

Yes you can read/write to any serial port that you have opened an fd to regardless of the stdio settings. I use multiple serial ports all the time.

Scott
by sblair
Tue Dec 22, 2015 12:37 pm
Forum: NetBurner Software
Topic: pre-2.7.2 sprintf bug characteristics?
Replies: 3
Views: 4177

Re: pre-2.7.2 sprintf bug characteristics?

Be aware there's a number of issues with the printf functions that I discovered in the 2.7.3 beta. These were new issues introduced since our production code runs on 2.6.7 and didn't experience them. I spent a bunch of time working with Dan and he plowed through and fixed them all. These may be diff...
by sblair
Thu Oct 08, 2015 11:17 pm
Forum: NetBurner Software
Topic: Accessing other I2C ports on MOD54415
Replies: 14
Views: 14666

Re: Accessing other I2C ports on MOD54415

To answer your question, to my knowledge I don't believe anything has changed in this regard.
by sblair
Tue Aug 11, 2015 10:43 pm
Forum: NetBurner Software
Topic: custom settings in constants.h
Replies: 1
Views: 2416

Re: custom settings in constants.h

One way is to probably just have multiple installations of nburn on your system. That way you can dedicate it to a specific project.
by sblair
Sun May 24, 2015 12:05 pm
Forum: NetBurner's Eclipse IDE
Topic: Eclipse Build doesn't always compile all files
Replies: 6
Views: 8316

Re: Eclipse Build doesn't always compile all files

It detects .html file changes since those are compiled. But if I'm only changing .js or graphics files in my html directory then I have to do a clean for it to pick them up.
by sblair
Fri May 22, 2015 9:49 pm
Forum: NetBurner's Eclipse IDE
Topic: Eclipse Build doesn't always compile all files
Replies: 6
Views: 8316

Re: Eclipse Build doesn't always compile all files

Just to be clear. What is the file type you see this with? I've never had that issue with a .c, .cpp, or .h file but there are certain files it won't pick up such as .js files since they aren't compiled files but they still need to get picked up and included in the build so I just have to force it t...
by sblair
Wed May 20, 2015 4:09 pm
Forum: NetBurner Software
Topic: Changing between Dhcp & Static IP
Replies: 14
Views: 7336

Re: Changing between Dhcp & Static IP

Here's what I do when I'm switching modes and it works fine on MOD54415 //Reset Ethernet Link if(NV_Settings.IPMode == MODE_DHCP) InitializeEthernet(); else { ChangeRuntimeIPSettings(CONFIG_IF_ID_ETHERNET, // Use first Config Record, 0 cr->ip_Addr, // New IP address cr->ip_Mask, // New IP mask cr->i...
by sblair
Tue May 19, 2015 3:23 pm
Forum: NetBurner Software
Topic: RTC and TimeZones (shoot me now)
Replies: 7
Views: 4922

Re: RTC and TimeZones (shoot me now)

Thanks. I'm using a 20ppm crystal here too. Looks like it just needs tuning for the circuit. As I was reading through the RTC datasheet I had a feeling it was going to be down to the clock circuit.