Search found 833 matches

by rnixon
Mon Nov 09, 2015 1:02 pm
Forum: NetBurner Software
Topic: GetHostByName timeout
Replies: 5
Views: 4943

Re: GetHostByName timeout

I would get a wireshark trace and compare the one that works with the one that does not.
by rnixon
Thu Nov 05, 2015 12:25 pm
Forum: NetBurner Software
Topic: Problems moving project from MOD54415 to MOD54417
Replies: 7
Views: 5302

Re: Problems moving project from MOD54415 to MOD54417

"Both Ethernet interfaces, the device it communicates with, and the development PC (with Wireshark) are connected to a common Ethernet switch. I don't know what you mean by "switched or independent mode"." By "switch" he means the same thing as "switch" in you...
by rnixon
Tue Nov 03, 2015 10:15 am
Forum: NetBurner Software
Topic: MOD5270 QSPI
Replies: 6
Views: 5404

Re: MOD5270 QSPI

I ran a quick test of the example and it works on my system. Running 2.7.3. Initially I had the pins wrong, so I would double check that. I had to look at the silkscreen, since pin 1 is in a different place than I expected.
by rnixon
Mon Nov 02, 2015 9:26 am
Forum: NetBurner Software
Topic: MOD5270 QSPI
Replies: 6
Views: 5404

Re: MOD5270 QSPI

Does the unmodified example program work?
by rnixon
Sun Nov 01, 2015 6:55 am
Forum: NetBurner Software
Topic: MOD5270 QSPI
Replies: 6
Views: 5404

Re: MOD5270 QSPI

Do you have anything plugged into the flash card slot?
by rnixon
Wed Oct 21, 2015 9:53 am
Forum: NetBurner Software
Topic: Is it possible to toggle a group of pins on J2 at once ?
Replies: 7
Views: 6145

Re: Is it possible to toggle a group of pins on J2 at once ?

There's 3 levels of speed for toggling gpio, the 54415 platform has an example, but the concept is the same for any platform:
Pins Class, easiest but slowest
C code programming registers
Assembly code programming registers
by rnixon
Thu Oct 15, 2015 11:11 am
Forum: NetBurner Hardware
Topic: SBL2E Chip custom board
Replies: 6
Views: 8396

Re: SBL2E Chip custom board

There are so many variations it can be difficult. I think if there is any deviation from any reference design I would recommend looking the the Freescale processor manual to determine if they are necessary or not for any particular design. I've had problems before because app notes and docs that cop...
by rnixon
Wed Oct 14, 2015 1:53 pm
Forum: NetBurner Hardware
Topic: SBL2E Chip custom board
Replies: 6
Views: 8396

Re: SBL2E Chip custom board

Why not just use the NetBurner board? Exactly what is different than the NetBurner design? I would start there, since if it was identical it seems like there would not be any problem. The freescale processor manual for that device should have the minimum connections. I would guess power, gnd, clk, r...
by rnixon
Thu Oct 08, 2015 9:23 am
Forum: Off-Topic
Topic: MOD54415 sending UDP packet from IRQ7 ISR routine
Replies: 5
Views: 12176

Re: MOD54415 sending UDP packet from IRQ7 ISR routine

>I've already done that - It didn't work. This is called from UserMain at startup: Make it simpler. Write a totally new app, then start small and build on it. - UserMain only with a global packet declaration, function to setup packet parameters, function to send and halt. Note that you probably need...
by rnixon
Wed Oct 07, 2015 8:44 pm
Forum: Off-Topic
Topic: MOD54415 sending UDP packet from IRQ7 ISR routine
Replies: 5
Views: 12176

Re: MOD54415 sending UDP packet from IRQ7 ISR routine

How about setting up the packet ahead of time, so the irq7 only posts the semaphore, and your highest priority task is only a pend and send udp packet? An interrupt will call the scheduler, so after the irq7 returns, the highest task ready to run will run, so you do not have to wait for the task tha...