Search found 118 matches

by sulliwk06
Thu Oct 29, 2020 11:04 am
Forum: NetBurner Software
Topic: MOD54415 External SD card F_ERR_NOT_FORMATTED
Replies: 11
Views: 6400

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...
by sulliwk06
Thu Oct 29, 2020 8:08 am
Forum: NetBurner Software
Topic: MOD54415 External SD card F_ERR_NOT_FORMATTED
Replies: 11
Views: 6400

Re: MOD54415 External SD card F_ERR_NOT_FORMATTED

MOD-DEV-70 Rev 1.93
JP4 is installed (what does that do?)
by sulliwk06
Thu Oct 29, 2020 7:02 am
Forum: NetBurner Software
Topic: MOD54415 External SD card F_ERR_NOT_FORMATTED
Replies: 11
Views: 6400

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...
by sulliwk06
Wed Sep 30, 2020 5:34 am
Forum: NetBurner Software
Topic: One Task to Rule Them All (TCP accept)
Replies: 4
Views: 2338

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.
by sulliwk06
Fri Jul 31, 2020 7:50 am
Forum: NetBurner Software
Topic: Rebuilding pctools
Replies: 2
Views: 1608

Re: Rebuilding pctools

I don't have visual studio installed, so I'll give that a shot, thanks
by sulliwk06
Fri Jul 31, 2020 6:30 am
Forum: NetBurner Software
Topic: Rebuilding pctools
Replies: 2
Views: 1608

Rebuilding pctools

I'm trying to rebuild the system tools and I think I'm missing some library needed for them. Are there any additional tools I need to install in order to rebuild them? C:\nburn\pctools\packcode>make install cl packcode.cpp advapi32.lib process_begin: CreateProcess(NULL, cl packcode.cpp advapi32.lib,...
by sulliwk06
Wed Apr 01, 2020 10:14 am
Forum: NetBurner Software
Topic: thread safe and non-blocking log function
Replies: 6
Views: 3283

Re: thread safe and non-blocking log function

If you make the log strings local they would be on the stack for each task, but if you remove the task lock the print statement could be interrupted by a higher priority task, which would mangle your messages a bit having some in the middle of others. What I typically have done in this type of situa...
by sulliwk06
Thu Mar 12, 2020 1:21 pm
Forum: NetBurner Software
Topic: Writing SmartTraps to a file
Replies: 2
Views: 1740

Re: Writing SmartTraps to a file

I have been able to do this in some of my projects. Basically I grabbed the entire EnableSmartTraps() function from the Netburner libraries and everything that came with it, and pasted it into my code under a different namespace. From there I just tweaked things a bit and sprintf the data into a glo...
by sulliwk06
Tue Feb 04, 2020 7:47 am
Forum: NetBurner Software
Topic: ambiguous error with Pins
Replies: 1
Views: 1363

Re: ambiguous error with Pins

I would be surprised if the "WORD val = ( Pins[23] ) ? 1:0;" didn't work. I think the PinIO class just only implements the conversion operators for int, BYTE, and bool. That 3rd example should be using the bool conversion and assigning 1 or 0 to your WORD, does it give that same conversion...