Search found 80 matches

by mx270a
Thu Sep 25, 2014 5:54 pm
Forum: NetBurner Software
Topic: Dhcp Server development
Replies: 14
Views: 7666

Re: Dhcp Server development

-----
by mx270a
Thu Sep 04, 2014 11:10 am
Forum: NetBurner Hardware
Topic: Connecting WiFi module to Nano dev board
Replies: 8
Views: 7178

Re: Connecting WiFi module to Nano dev board

I eventually figured out that the reset pin does need to be connected in order to change Wifi settings. I used pin 30 on the nano and have switched between AP mode and client mode successfully. I did notice that AP mode requires a 8 digit password. I suppose that encouraging people to use security i...
by mx270a
Wed Sep 03, 2014 1:35 pm
Forum: NetBurner Hardware
Topic: Connecting WiFi module to Nano dev board
Replies: 8
Views: 7178

Re: Connecting WiFi module to Nano dev board

Thank you. I'm up and running in SPI mode now.

FYI, the silkscreen documentation for the jumpers on the Wifi dev board is wrong. SPI mode needs a jumper on J6. The quick start guide has this documented correctly.
by mx270a
Wed Sep 03, 2014 9:27 am
Forum: NetBurner Hardware
Topic: Connecting WiFi module to Nano dev board
Replies: 8
Views: 7178

Connecting WiFi module to Nano dev board

I have a Wifi dev board that I want to connect to a Nano54415 dev board. Is there a cheat sheet for which pins should be connected between these two?

Thanks,
Lance
by mx270a
Wed Aug 06, 2014 10:09 am
Forum: NetBurner Software
Topic: Dhcp Server development
Replies: 14
Views: 7666

Re: Dhcp Server development

I too have been working on building a DHCP server. Started it a year ago, finally got it finished up. While this isn't integrated into the network stack like the official Netburner one is, it does have the following features: - Will scan the network for devices by pinging them and checking the ARP t...
by mx270a
Wed Aug 06, 2014 9:41 am
Forum: Off-Topic
Topic: Versamodule - New Company for Nano54415 Module
Replies: 1
Views: 5105

Re: Versamodule - New Company for Nano54415 Module

Any idea what happened to the VersaModule webite? The pin sharing tool that they used to have on their website was quite handy.
by mx270a
Fri Jul 18, 2014 7:28 pm
Forum: NetBurner Software
Topic: NANO54415 locks up after a lot of TCP connect()s
Replies: 17
Views: 8269

Re: NANO54415 locks up after a lot of TCP connect()s

Resolved. I updated to NNDK 2.6.7 and haven't seen the issue since. Rookie mistake not updating the software first, I should have known better. On the plus side, I learned a lot about how the NB system works. Thanks for the assistance.
by mx270a
Mon Jul 07, 2014 10:25 pm
Forum: NetBurner Software
Topic: NANO54415 locks up after a lot of TCP connect()s
Replies: 17
Views: 8269

Re: NANO54415 locks up after a lot of TCP connect()s

The address the IP task is sitting at comes back as:
HashSocketList::findsocket(unsigned short, unsigned short, unsigned long) const
C:\nburn\system/tcp.cpp:4443

Which is this line:

Code: Select all

while ( ps != NULL )
by mx270a
Sun Jul 06, 2014 10:46 am
Forum: NetBurner Software
Topic: NANO54415 locks up after a lot of TCP connect()s
Replies: 17
Views: 8269

Re: NANO54415 locks up after a lot of TCP connect()s

I logged OSDumpTasks() from three lockups. uc/OS Tasks Prio State Ticks Call Stack Idle|Ready |forever |at: 400076ec Main|Ready |forever |4000784e->400045da->400076d0-><END> TCP |Semaphore|forever |40007d72->40014b4a->400076d0-><END> IP |Ready |forever |at: 4001199a Esnd|Fifo | 32 |40008ad8->4001c60...
by mx270a
Sun Jul 06, 2014 8:17 am
Forum: NetBurner Software
Topic: NANO54415 locks up after a lot of TCP connect()s
Replies: 17
Views: 8269

Re: NANO54415 locks up after a lot of TCP connect()s

Good news. I added a high priority task, and it keeps running while everything else stops.