Search found 14 matches

by versamodule
Mon Jan 27, 2014 10:13 am
Forum: NetBurner's Eclipse IDE
Topic: Special settings to use NBEclipse with MOD5213 and MOD54415?
Replies: 2
Views: 4198

Re: Special settings to use NBEclipse with MOD5213 and MOD54

Nothing needs to be done. When you start a new project, select the platform you want to use from the drop down list.
Thats it ; )
by versamodule
Fri Nov 22, 2013 9:40 am
Forum: NetBurner Hardware
Topic: Clarification on # of Nano UARTS
Replies: 9
Views: 9990

Re: Clarification on # of Nano UARTS

You can get a graphical view of it here.

http://www.versamodule.com/NanoCheetSheet/Main.html
by versamodule
Mon Sep 16, 2013 10:26 am
Forum: Off-Topic
Topic: MOD54415 SPI and I2C question
Replies: 23
Views: 22202

Re: MOD54415 SPI and I2C question

and where this is simple and broken down (thanks versamodule) again, the address, I'm not understanding what it is and where it comes from. I'm assuming that if I wanted to write 24 bits, I could follow the 16 bit example, but not sure why he references a register location versus data... Sorry if t...
by versamodule
Fri Sep 13, 2013 7:34 am
Forum: Off-Topic
Topic: MOD54415 SPI
Replies: 3
Views: 5357

Re: MOD54415 SPI

Have you gotten it to work with the example yet ? All of my work is on the nano, so i am pulling from assumptions for the MOD. In the example you have: // J2[30].function(PINJ2_30_DSPI1_PCS0); J2[25].function(PINJ2_25_DSPI1_SCK); J2[27].function(PINJ2_27_DSPI1_SIN); J2[28].function(PINJ2_28_DSPI1_SO...
by versamodule
Mon Sep 09, 2013 10:23 am
Forum: Off-Topic
Topic: MOD54415 SPI and I2C question
Replies: 23
Views: 22202

Re: MOD54415 SPI and I2C question

I would agree with Chris 100%. If your not familiar with Semaphores yet, get it working the way you know. Then once you get that under your belt implement the instructions Chris has shown. It is the best way to go about it.
by versamodule
Mon Sep 09, 2013 9:22 am
Forum: Off-Topic
Topic: MOD54415 SPI and I2C question
Replies: 23
Views: 22202

Re: MOD54415 SPI and I2C question

As for the 2.2k resistor... pullup for the SDA? or for SDA and clock?
yes

As far as SPI goes, lets do what rnixon suggested by starting a new post just for that.
by versamodule
Sun Sep 08, 2013 9:35 am
Forum: Off-Topic
Topic: MOD54415 SPI and I2C question
Replies: 23
Views: 22202

Re: MOD54415 SPI and I2C question

This code i pulled from the Nano54415, should be the same for the MOD. I leave that up to you to check. Here is what you can do. Dont forget to check that there is at least a 2.2k resistor on both lines to 3.3v (VERY IMPORTANT!!!) If you want to know a bit more about a function, say like I2CStart, p...
by versamodule
Sun Jun 30, 2013 12:46 am
Forum: NetBurner Software
Topic: Boot Monitor conflicts with connected device on MOD5270
Replies: 13
Views: 8943

Re: Boot Monitor conflicts with connected device on MOD5270

Is there a reason why you cant change the monitor port to Com1 instead ?
by versamodule
Wed Jun 26, 2013 7:54 am
Forum: NetBurner Software
Topic: ucos task priority question
Replies: 7
Views: 5499

Re: ucos task priority question

When using tasks you should place a "OSTimeDly( x );" inside the while loop to allow other tasks to fire. void ProcessLineData(void * pd) { while (1) { if (g_bDataCaptured) { LED3.set(LED_ON); memcpy(g_ulPixelData, g_ulRawPixelData, sizeof(g_ulPixelData)); LED1.set(LED_OFF); LED2.set(LED_O...
by versamodule
Sat Jun 15, 2013 7:17 pm
Forum: NetBurner Software
Topic: Real-time audio to browser through my web server - possible?
Replies: 8
Views: 7431

Re: Real-time audio to browser through my web server - possi

It can be done with Silverlight or Adobe flex. Here is a demo i made a long time ago using Flex. The NB board has 3, .mp3 files on the SD card. When i point my browser to the board it serves up the app to the browser and then starts streaming the audio file to it. As its streaming it, it starts to p...