Search found 113 matches
- Wed Feb 09, 2022 12:26 pm
- Forum: NetBurner Software
- Topic: Setting Time Zones
- Replies: 7
- Views: 1026
Re: Setting Time Zones
Wikipedia says that these abbreviations predate any kind of standard. They were created arbitrarily in each region and have been carried over since then. https://en.wikipedia.org/wiki/List_of_time_zone_abbreviations Time zones are often represented by alphabetic abbreviations such as "EST", "WST", a...
- Wed Jan 19, 2022 5:39 am
- Forum: NetBurner Software
- Topic: Upgrading software from NDK 1.6 to 2.x
- Replies: 10
- Views: 1500
Re: Upgrading software from NDK 1.6 to 2.x
The explicit blocking should be whatever you are using to evenly space out your DACout calls in each thread. So that would either be an OSTimeDly or pending on some resource that is made available at specific intervals.
- Fri Sep 10, 2021 8:42 am
- Forum: NetBurner Software
- Topic: DHCP options 43 & 60
- Replies: 2
- Views: 584
Re: DHCP options 43 & 60
It would be nice if similar methods could be added for running a DHCP server. Personally I'd like to be able to set a captive portal address to direct a user to my webpage when they connect to wifi.
- Fri Oct 30, 2020 7:53 am
- Forum: NetBurner Software
- Topic: MOD54415 External SD card F_ERR_NOT_FORMATTED
- Replies: 11
- Views: 2632
Re: MOD54415 External SD card F_ERR_NOT_FORMATTED
Looks like it ended up being my processor. I had a MOD54417 and plugged it in with that example and it worked fine. Thanks for the help
- Fri Oct 30, 2020 6:07 am
- Forum: NetBurner Software
- Topic: MOD54415 External SD card F_ERR_NOT_FORMATTED
- Replies: 11
- Views: 2632
Re: MOD54415 External SD card F_ERR_NOT_FORMATTED
Running the program you provided seems to have the same results, so if that program worked for you then there must be something off with my hardware. I'll see if I can scrounge up a totally different dev board, processor, and SD card and try again. Waiting 2sec to start 'A' to abort Configured IP = ...
- Thu Oct 29, 2020 1:34 pm
- Forum: NetBurner Software
- Topic: MOD54415 External SD card F_ERR_NOT_FORMATTED
- Replies: 11
- Views: 2632
Re: MOD54415 External SD card F_ERR_NOT_FORMATTED
MOD54415 Rev 1.9
- Thu Oct 29, 2020 11:04 am
- Forum: NetBurner Software
- Topic: MOD54415 External SD card F_ERR_NOT_FORMATTED
- Replies: 11
- Views: 2632
Re: MOD54415 External SD card F_ERR_NOT_FORMATTED
No, JP4 was already installed the whole time. I just ran a test without JP4 and it then said it was write protected. Then I put JP4 back on and got the not formatted error again. Waiting 2sec to start 'A' to abort Configured IP = 0.0.0.0 Configured Mask = 0.0.0.0 MAC Address= 00:03:f4:07:d8:dd Appli...
- Thu Oct 29, 2020 8:08 am
- Forum: NetBurner Software
- Topic: MOD54415 External SD card F_ERR_NOT_FORMATTED
- Replies: 11
- Views: 2632
Re: MOD54415 External SD card F_ERR_NOT_FORMATTED
MOD-DEV-70 Rev 1.93
JP4 is installed (what does that do?)
JP4 is installed (what does that do?)
- Thu Oct 29, 2020 7:02 am
- Forum: NetBurner Software
- Topic: MOD54415 External SD card F_ERR_NOT_FORMATTED
- Replies: 11
- Views: 2632
MOD54415 External SD card F_ERR_NOT_FORMATTED
I've been trying to to get the external (offboard) SD card working with my MOD54415 and I was having some trouble, so I've eliminated as many variables as possible and this is what I've got. I have installed a fresh copy of the development tools 2.9.3 and I'm only using the example programs MOD5441X...
- Wed Sep 30, 2020 5:34 am
- Forum: NetBurner Software
- Topic: One Task to Rule Them All (TCP accept)
- Replies: 4
- Views: 1617
Re: One Task to Rule Them All (TCP accept)
The listen call returns a socket, so you should be able to add that socket into your fd set for the select call, and then accept new connections inside there.