Search found 8 matches
- Tue Nov 24, 2015 1:47 pm
- Forum: NetBurner Hardware
- Topic: Alternate Boot monitor crash
- Replies: 3
- Views: 6163
Alternate Boot monitor crash
Hi, After what may have been a power cycle during a User Parameter save, my application is scribbled. I shorted the TP1 jumper and got into the Alternate boot monitor. When I enter the Setup menu to reset the MAC, IP etc, I get this: nb>setup MAC address=FF-FF-FF-FF-FF-FF 1.)IP Address =255.255.255....
- Mon Aug 11, 2014 8:08 pm
- Forum: NetBurner Hardware
- Topic: microSD support in MOD5441X and NANO54415
- Replies: 11
- Views: 15390
Re: microSD support in MOD5441X and NANO54415
Thanks Ridgeglider, that was exactly what I was looking for, I didn't venture far enough in the docs folder... :S
I ended up needing to use an unsigned long long to compile the space using: (space.total_high << 32) + space.total which worked ok.
cheers for the help!
I ended up needing to use an unsigned long long to compile the space using: (space.total_high << 32) + space.total which worked ok.
cheers for the help!
- Sun Aug 10, 2014 8:54 pm
- Forum: NetBurner Hardware
- Topic: microSD support in MOD5441X and NANO54415
- Replies: 11
- Views: 15390
Re: microSD support in MOD5441X and NANO54415
Hi, Thought I'd add to this post seeing as though it isn't too old. I have been using a SanDisk Ultra microSDHC 32GB Class 10/UHS1 (same as d9_) and it has been working fine (writing and reading), however when using f_getfreespace() I am getting strange results. When there is less than around 4GB of...
- Sun Jul 06, 2014 6:54 pm
- Forum: NetBurner Software
- Topic: Setting Clock speed on MOD5441X
- Replies: 2
- Views: 2767
Re: Setting Clock speed on MOD5441X
Thanks for the reply. I saw that post and I've turned off what I don't need but it didn't achieve as much as I'd like. I'll keep poring through the Ref manual...
- Thu Jul 03, 2014 4:44 pm
- Forum: NetBurner Software
- Topic: Setting Clock speed on MOD5441X
- Replies: 2
- Views: 2767
Setting Clock speed on MOD5441X
Hi, I am trying to set up a 'low power' operation mode for a battery operated project but I still would like to return to full speed to perform processing routines, then back to low speed. At the moment as a start, I am setting sim2.clock.pll_cr[REFDIV] to 1 to half the Vco frequency. This works mos...
- Wed Feb 12, 2014 2:54 pm
- Forum: NetBurner Software
- Topic: sending large file using a second task
- Replies: 4
- Views: 3614
Re: sending large file using a second task
Yes! That worked exactly how I want - file downloading with some AJAX updates - thank you very much. I've changed the main() priority to MAIN_PRIO, so I think thats ok. It's all running how I expected it to anyhow.
This is my first time posting to this forum, thanks for such a quick response.
Josh
This is my first time posting to this forum, thanks for such a quick response.
Josh
- Tue Feb 11, 2014 2:36 pm
- Forum: NetBurner Software
- Topic: sending large file using a second task
- Replies: 4
- Views: 3614
Re: sending large file using a second task
Thanks Dan. I'm pretty much using the custom GetHandler and SendFragment functions from the examples. I've got the secondary task running with priority 52 (http task = 45), and I just tried inserting a OSTimeDly(1) in the loop to free it up a bit but that didn't change anything. It seems as though e...
- Mon Feb 10, 2014 6:49 pm
- Forum: NetBurner Software
- Topic: sending large file using a second task
- Replies: 4
- Views: 3614
sending large file using a second task
Hi, I am quite new to writing for TCP/http/web etc so I might be quite off in my expectations. I am trying to send a large file to the browser using a separate task so that I can free up the HTTP task to resume serving pages, and not be held up while the large file is being sent. I am passing the so...