Search found 1091 matches

by pbreed
Thu Jun 19, 2025 6:41 am
Forum: NetBurner Software
Topic: DSCP
Replies: 5
Views: 3640

Re: DSCP

We have created a solution for this using the SetDSCP to the packet class. Submit a support request and we can get you the modified files to test.
At this point we we are running our internal regression testing (to insure it did not break anything) this should complete in about an hour.
But we've ...
by pbreed
Thu Jun 19, 2025 6:36 am
Forum: NetBurner Software
Topic: Docker and/or command-line builds of NNDK v2
Replies: 5
Views: 2052

Re: Docker and/or command-line builds of NNDK v2

So in a normal 2.9.7 install on windows you will find a setenv.bat file in the nburn root.
If you run that then you can build from the windows command line.
make
make clean
make load etc...

With 2.9.7 you have to make sure you also build in the system and platform/system directories as the make ...
by pbreed
Thu Jun 19, 2025 5:02 am
Forum: NetBurner Software
Topic: DSCP
Replies: 5
Views: 3640

Re: DSCP

Would you like
SetDSCP(uint8_t dscp); │
int8_t GetDSCP(void) const;

added to the packet class?
Or would you like an optional variable to the send functions?

I'm leaning toward the SetDSCP.....
by pbreed
Wed Oct 23, 2024 9:24 am
Forum: NetBurner Software
Topic: modbus rtu on MODM7AE70
Replies: 3
Views: 24405

Re: modbus rtu on MODM7AE70

Realize the call back is at interrupt scope.
So the things you can do there are really limited.
No calls to any RTOS functions, no delays, none of the nice timer interfaces.
You basically can only stuff things in fifios and wake up tasks with post functions...
Read the interrupt section in the ...
by pbreed
Mon Aug 26, 2024 2:44 pm
Forum: NetBurner Hardware
Topic: MODM7AE70 ADC VREF pin
Replies: 7
Views: 57437

Re: MODM7AE70 ADC VREF pin

Callbacks... the callbacks for the MOPdM7 are slightly different than the serial callbacks for the earlier netburner devices.

#include <serinternal.h>

void MyPutChar( int num, uint8_t c )
{//Num is port number
}

int MyGetChar( int num )
{
return -1; if nothing to send.
}




UartData[portnum].m ...
by pbreed
Mon Jul 08, 2024 12:06 pm
Forum: NetBurner Software
Topic: Using TFTP
Replies: 6
Views: 43309

Re: Using TFTP

Done, submit a support request to get the code.
by pbreed
Wed Jul 03, 2024 10:24 am
Forum: NetBurner Software
Topic: Using TFTP
Replies: 6
Views: 43309

Re: Using TFTP

Would this work for you:

TFTP_Server MyServer(port_num);

//Now add files to the server....
TFTP_Server_File(MyServer,"Filename.dat", pFileData, file_len);
TFTP_Server_File(MyServer,"Filename2.dat", pFileData2, file_len2);
*
*
*
etc for as many files as you want to serve.
by pbreed
Mon Jul 01, 2024 12:42 pm
Forum: NetBurner Software
Topic: Using TFTP
Replies: 6
Views: 43309

Re: Using TFTP

I'll try and get this working this week...
by pbreed
Fri Jun 28, 2024 11:14 am
Forum: NetBurner Software
Topic: Using TFTP
Replies: 6
Views: 43309

Re: Using TFTP

Server sourcing files or receiving files?
Where are the files the server is getting/sending coming from?
Programmatically generated/consumed?
To/From SDRAM?
Device Flash.
Device Flash file system
external SD Fat file system?

TFTP is a really simple protocol would not be hard to do, please be ...
by pbreed
Thu Jun 06, 2024 3:23 pm
Forum: NetBurner Hardware
Topic: MODM7AE70 ADC VREF pin
Replies: 7
Views: 57437

Re: MODM7AE70 ADC VREF pin

Have not tried this.
I don't think your using the A/D so messing up Vref should be fine.
Looking at the data sheet I could find a minimum operational vvalue of 1.7V, but could not find anything on vref in the datasheet maximum table.

I think it should be fine.