Search found 445 matches

by seulater
Fri Aug 28, 2015 6:04 am
Forum: NetBurner Hardware
Topic: MOD5441X configuring CSx & R/~W
Replies: 0
Views: 15012

MOD5441X configuring CSx & R/~W

I have a new design where I need to tie in an external part to the address and data bus. I used CS1 & R/~W line along with a 8-bit buffer on the data bus. I have the prototype here and I can see with the scope that the CS1 & R/~W are doing their job. I am seeing the correct address and data ...
by seulater
Tue Jun 30, 2015 7:15 pm
Forum: NetBurner Hardware
Topic: EMI Reduction with MOD5441X and NANO54415
Replies: 5
Views: 8412

Re: EMI Reduction with MOD5441X and NANO54415

I know this is old, but I too am now looking to reduce power to lower heat.
Can NB verify what we need to initially leave on.
by seulater
Tue Jun 30, 2015 4:54 am
Forum: NetBurner Software
Topic: How to change wifi security settings.
Replies: 3
Views: 2953

Re: How to change wifi security settings.

Personally I am good the way it is WPA2, but the web developer wants to have the user to be able to select other options. So I guess whatever it can do bring them all to the top.
by seulater
Mon Jun 29, 2015 7:26 pm
Forum: NetBurner Software
Topic: How to change wifi security settings.
Replies: 3
Views: 2953

How to change wifi security settings.

how can we within code change the wifi security (aka WEP, WPA, WPA2...)
by seulater
Mon Jun 29, 2015 7:22 pm
Forum: NetBurner Hardware
Topic: Simplified Wifi breakout board (pics)
Replies: 5
Views: 6207

Re: Simplified Wifi breakout board (pics)

I agree with wanting the half-moon pads, but I'd guess that they would: a) add to the board cost, b) add slightly to the board size, and c) make it harder to do the trace antenna. Also, Lance, MODE1 should be pulled high as well for SPI. In the current firmware, MODE1 is a "Don't care" fo...
by seulater
Sat Jun 20, 2015 2:18 am
Forum: NetBurner Hardware
Topic: Throttle the CPU speed on nano54415
Replies: 3
Views: 4547

Re: Throttle the CPU speed on nano54415

At first I thought the same, so I put in a brand new module and it ran the same temp. I then took the module and put it in the kit and it runs a bit cooler @ 51.0 Deg. C. This does make sense that my board runs warmer as i mounted the WI-FI module directly under the nano module.
by seulater
Fri Jun 19, 2015 9:55 am
Forum: NetBurner Hardware
Topic: Throttle the CPU speed on nano54415
Replies: 3
Views: 4547

Throttle the CPU speed on nano54415

I recently designed a project in which I used the nano and the Wifi module. I placed the wifi module under the nano module to save space. Currently the processor is running at 62.7c in my office, and it's not even in its enclosure yet. This will be an outdoor application, and I am getting concerned ...
by seulater
Sat Mar 07, 2015 9:31 am
Forum: Off-Topic
Topic: How to convert Deg. F to a RGB value
Replies: 0
Views: 10982

How to convert Deg. F to a RGB value

I have a IR thermometer and a RGB led. I would like to have the RGB led display the color of the temp. In other words you have seen those temp bulbs icons that on the bottom have the color blue for cold and work their way up to RED for hot at the top. Has anyone come across some code that will conve...
by seulater
Mon Feb 23, 2015 9:32 am
Forum: NetBurner Hardware
Topic: MOD5441X FlexBus using CS1
Replies: 5
Views: 5647

Re: MOD5441X FlexBus using CS1

Thanks! that is exactly what I was looking for.
by seulater
Mon Feb 23, 2015 7:55 am
Forum: NetBurner Hardware
Topic: MOD5441X FlexBus using CS1
Replies: 5
Views: 5647

Re: MOD5441X FlexBus using CS1

Found the issue. sim2.cs[1].csar = ( BASEADDRESS >> 16 ); I nabbed this example from Databus-IO-Expansion.pdf on the MOD5441x Page. According to the manual bits 31-16 define the Base Address, not 15-0. So a quick change to: sim2.cs[1].csar = ( BASEADDRESS ); Resolved the spurious extra CS pulse abou...