Search found 30 matches
- Wed Dec 04, 2019 4:59 pm
- Forum: Your first forum
- Topic: Forum is back on line
- Replies: 1
- Views: 17745
Re: Forum is back on line
The forum was offline for about 20 minutes earlier this week as we updated to the latest phpBB3. Thanks again to Mark at www.phpbbservices.com
- Wed Feb 13, 2019 11:27 pm
- Forum: Your first forum
- Topic: Forum is back on line
- Replies: 1
- Views: 17745
- Sat Jun 11, 2016 7:59 pm
- Forum: Kitchen sink
- Topic: quote in forum doesn't work right
- Replies: 1
- Views: 17496
Re: quote in forum doesn't work right
well I updated the forum to version 3.1.9 anyway
Since I never knew how to do it myself this is the format
:Name to quote wrote:Quoted text
Since I never knew how to do it myself this is the format
Code: Select all
[quote="Name to quote"]Quoted text[/quote]:
- Thu Jul 24, 2014 3:34 pm
- Forum: Power Issues
- Topic: SuperPro CON2
- Replies: 2
- Views: 21968
Re: SuperPro CON2
I never heard of a regulated 7.5V supply, but I guess they could exist, more likely it is just a nominal 7.5V DC output transformer. If the board is in reset, something must be pulling reset low, what else do you have connected? Also do you really see 5V on the Arduino power connector (it would be g...
- Fri Feb 21, 2014 12:03 am
- Forum: Software issues
- Topic: Memory map for C
- Replies: 3
- Views: 10236
Memory map for C
From help line What is the memory map for SuperPRO PROplus in C? For C programs the memory map is controlled by the corresponding lpcXXXX.ld file in the lib directory. We take the stock files from the gcc distributions and make some minor edits. The sites for gcc have documents describing those file...
- Thu Sep 12, 2013 9:14 pm
- Forum: Other Hardware interfaces
- Topic: HWPWM pins
- Replies: 0
- Views: 10627
HWPWM pins
from the help line -- >On the Super Pro+ which pins are designated for PWM applications? >Have a Spark Fun Tri-Colored LED Break out board that must be driven >by PWM outputs ..............................THANKS...............Ralph scroll down on this page from the help file http://www.coridium.us/A...
- Thu Dec 06, 2012 5:02 pm
- Forum: Software issues
- Topic: HWPWM with different cycle times
- Replies: 17
- Views: 29840
Re: HWPWM with different cycle times
> In short, the code can output simultaneous PWN pulse trains from pins 3 and 5 while changing the cycletimes on the fly (I just used some DO loops). > > I have noticed that only pins 3 and 5 work for this. If you add another PWM channel all goes to poop. > ... > If anyone has any input on exactly w...
- Thu Dec 06, 2012 5:01 pm
- Forum: Software issues
- Topic: HWPWM with different cycle times
- Replies: 17
- Views: 29840
Re: HWPWM with different cycle times
Here is some code that I grunted out. I have checked the outcome for consistency with my digital o-scope. In short, the code can output simultaneous PWN pulse trains from pins 3 and 5 while changing the cycletimes on the fly (I just used some DO loops). I have noticed that only pins 3 and 5 work for...
- Thu Dec 06, 2012 5:01 pm
- Forum: Software issues
- Topic: HWPWM with different cycle times
- Replies: 17
- Views: 29840
Re: HWPWM with different cycle times
This is possible, but you will need to program the timer/match
registers differently. Though sketchy the details of those registers
is in the User Manual from NXP (link in the Help Files-> CPU details)
registers differently. Though sketchy the details of those registers
is in the User Manual from NXP (link in the Help Files-> CPU details)
- Thu Dec 06, 2012 5:01 pm
- Forum: Software issues
- Topic: HWPWM with different cycle times
- Replies: 17
- Views: 29840
Re: HWPWM with different cycle times
In the "C-Tools", I notice that the HWPWM function is set up to use a single cycle time between all of the HWPWM channels. I was wondering if it is possible to have 2 different cycle times? I need to set up one HWPWM channel to one frequency (cycle time) and all the others to another frequency while...