Hi I have a definate need for a linux shell utility to update a netburner application over UDP. Has any one got something I could use? Thanks. Steve Reid ... ...
One thing that can cause intermittent crashes is having two interrupts set to the same level and priority. The interrupts configured within the NB code for the...
Hi I have a question. I know C under Windows has a guid function to create a GUID string, is there any similar function under Netburner? I know I can't use the...
Has anyone tried to use a 5270 to reprogram a 5213? I'd like to put the 5213_APP.s19 file on an SD card on a 5270 platfrom via Ethernet / FTP, then use the...
Henry Doin' something like that right now.... the monitor squeaks when it wakes up, you need to sense the char coming at you and send 'A' back at the module to...
Chris Thanks. What happens if the 5213 is not in the monitor, but instead's running an app w/ SerialUpdate as a task? What do you send to the 5213 so...
Hi Miguel, If you are using a networking module just use the mac address from the ConfigRecord struct. This is guaranteed to be unique from any other MAC...
Hi, The source of what happens on the NetBurner side is not all available in the MOD5213 system source since most of it occurs from the monitor. To see how...
... create a ... can't ... knows a ... As someone already pointed out the MAC address could be used for one-time unique ID. If you need to generate lots of...
Hi Larry, Do you guys have a document that describes the monitor capabilities and protocols? We're doing what is being discussed in this thread, with the...
Hi Joe, If you do a search for monitor in the NNDK User Manual you will see all of the common monitor commands and their descriptions. There are not any other...
I'm trying to understand how data can be reliably passed into and out of ISRs. Many of the NB examples use globals, but is this safe? Is there a way to avoid...
Hi Henry, The answer is ... it depends! I use uCOS-II on DSPs, and ARM processors, and I haven't had time to play with my Netburner's, so the following are...
No, but when I get my MOD5270 I plan to do just that... should have plenty of MIPS to handle it all, plus encryption, etc... oops, no on- chip/on-board...
Dave : thanks for a well-considered reply. Much appreciated. Apologies to everyone for the whole string of posts...not sure how that happened. I've seen...
Hi Henry, ... No problem. ... I believe uCOS was published in a series of magazine articles, and as such was open for public use. uCOS-II is supported by ...
Has anyone had trouble using the string class functions/methods assign and erase on the 5213. I tried to port somecode from the pc to the netburner but those...
Hi Henry, OSCritEnter/Leave are OS blocking functions and are completely different from the USER_ENTER/EXIT_CRITICAL macros. Actually you might be thinking...
Small typo... I said that UCOS_ENTER/EXIT_CRITICAL blocks all non-maskable interrupts when it actually blocks all maskable interrupts. Pretty sure you got...
We are searching for a CMOS camera module with i2c for MOD5282. Any suggestion or experience with cmos camera modules on netburner microcontroller modules ?...
Hi.joe. Thanks for the info..... The priority level are different for the two interrupts irq1 and irq3. IRQ 1 happens only when somebody press the button on...
Hello I am using Net burner MOD5234, and working with examples, and i try to write the program in flash through MITTY or Netburner C++ IDE, before it worked...
Hi, You may want to change your interface from I2C to either SPI or parallel bus. I have seen the I2C peripheral transfer at most 500kbit but reliably the...
There is a list of the trap vectors in C:\Nburn\include\cfinter.h and also on page 3-11 of the MCF5270RM. You also should look at the description of smarttrap...
I'm still grappling with protecting data using mailboxes, queues and fifos...Could folks let me know if I'm on track? Once again, thanks in advance! I know...
Hiya, I'll answer from the uCOS-II point of view; ... See p235-237 in Labrosse's book (2nd Ed) and he shows the code for OSMboxPend() and Post(). The code uses...
It isn't a proper utilization of the OS. But I regularly pass variables back and forth between Interrupts and different tasks. I just use globals for the...
Hi Allen: There's no doubt that many of us have been setting flags in ISRs and subsequently polling them in the app's main loop. Once set, a function in the...