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 ...
Search found 1091 matches
- Thu Jun 19, 2025 6:41 am
- Forum: NetBurner Software
- Topic: DSCP
- Replies: 5
- Views: 96
- Thu Jun 19, 2025 6:36 am
- Forum: NetBurner Software
- Topic: Docker and/or command-line builds of NNDK v2
- Replies: 5
- Views: 134
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 ...
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 ...
- Thu Jun 19, 2025 5:02 am
- Forum: NetBurner Software
- Topic: DSCP
- Replies: 5
- Views: 96
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.....
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.....
- Wed Oct 23, 2024 9:24 am
- Forum: NetBurner Software
- Topic: modbus rtu on MODM7AE70
- Replies: 3
- Views: 23702
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 ...
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 ...
- Mon Aug 26, 2024 2:44 pm
- Forum: NetBurner Hardware
- Topic: MODM7AE70 ADC VREF pin
- Replies: 7
- Views: 56327
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 ...
#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 ...
- Mon Jul 08, 2024 12:06 pm
- Forum: NetBurner Software
- Topic: Using TFTP
- Replies: 6
- Views: 42468
Re: Using TFTP
Done, submit a support request to get the code.
- Wed Jul 03, 2024 10:24 am
- Forum: NetBurner Software
- Topic: Using TFTP
- Replies: 6
- Views: 42468
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.
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.
- Mon Jul 01, 2024 12:42 pm
- Forum: NetBurner Software
- Topic: Using TFTP
- Replies: 6
- Views: 42468
Re: Using TFTP
I'll try and get this working this week...
- Fri Jun 28, 2024 11:14 am
- Forum: NetBurner Software
- Topic: Using TFTP
- Replies: 6
- Views: 42468
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 ...
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 ...
- Thu Jun 06, 2024 3:23 pm
- Forum: NetBurner Hardware
- Topic: MODM7AE70 ADC VREF pin
- Replies: 7
- Views: 56327
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.
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.