Search found 68 matches

by mazur50
Mon Nov 16, 2009 12:40 pm
Forum: IDE
Topic: swordfish backup
Replies: 13
Views: 8219

I have the newest version from the site, and it still doest work.
by mazur50
Thu Nov 12, 2009 4:21 am
Forum: Compiler
Topic: Trying code out in Proteus
Replies: 5
Views: 3576

I am also having the same problem on both of my computers with 2.1.0.2
by mazur50
Wed Nov 11, 2009 11:44 pm
Forum: IDE
Topic: swordfish backup
Replies: 13
Views: 8219

I have 2.1.0.2 ICC 1.1.5.1
by mazur50
Wed Nov 11, 2009 9:12 pm
Forum: IDE
Topic: swordfish backup
Replies: 13
Views: 8219

swordfish backup

When installing swordfish backup i get

This version of setup requires a later version of the host application---

Is there a fix for this.

Mike
by mazur50
Wed Nov 11, 2009 1:24 pm
Forum: IDE
Topic: Make ports mirror
Replies: 8
Views: 5685

Can this be done with Pwm? I run a 18f1220 and wand another port for pwm.
by mazur50
Tue Nov 10, 2009 11:48 pm
Forum: IDE
Topic: Make ports mirror
Replies: 8
Views: 5685

CharlieM wrote:[quoteHow can i make PortB.7 = or do the same thing as Portb.3
PortB.7= PortB.3?[/quote]

Do you need to use the ?
by mazur50
Wed Aug 05, 2009 3:31 pm
Forum: Wiki Announcements
Topic: Swordfish BackUp
Replies: 24
Views: 27065

anyone have a fix for this.
by mazur50
Sun Aug 02, 2009 4:00 am
Forum: Wiki Announcements
Topic: Swordfish BackUp
Replies: 24
Views: 27065

I am also having a problem with this. Does anyone know how to fix this.

Thanks
Mike
by mazur50
Tue Apr 14, 2009 2:26 am
Forum: Compiler
Topic: USart to VB.net display ADC data on a gauge
Replies: 2
Views: 2113

do you have any examples of code. And how can a show the value from two adc on two different gauges?
by mazur50
Mon Apr 13, 2009 5:45 pm
Forum: Compiler
Topic: USart to VB.net display ADC data on a gauge
Replies: 2
Views: 2113

USart to VB.net display ADC data on a gauge

Does anyone have any good links

I am looking to display Usart data in VB.net on gauges and i dont know where to start.
by mazur50
Tue Apr 07, 2009 6:28 pm
Forum: IDE
Topic: Question about programers and Swordfish
Replies: 1
Views: 2610

Question about programers and Swordfish

Right now i have a JDM programer. is there are way to get this to work right from swordfish?

Or should i get a Pickit2 and is there a way to get that to work from swordfish.
by mazur50
Sat Apr 04, 2009 11:31 pm
Forum: Compiler
Topic: PWM question
Replies: 3
Views: 2789

So I think I got the problem I was doing somthing wrong on the hardware side but I did notice I am only getting like 70 percent duty cycle max
by mazur50
Sat Apr 04, 2009 9:22 am
Forum: Compiler
Topic: PWM question
Replies: 3
Views: 2789

PWM question

Can anyone tell me why i am getting only 80Hz out this when the the frequency is set to 1000 Device = 18F1220 // Setup the device/clock information Clock = 8 Config OSC = INTIO2 Dim Brake_Mosfet As PORTB.3, // Declare the Brake_Mosfet pin ABS_Pot As PORTA.0, // Declare the ABS_Pot pin ABS_Brake_Swit...
by mazur50
Thu Apr 02, 2009 5:55 pm
Forum: Compiler
Topic: Percentages
Replies: 3
Views: 2140

When I do.

Code: Select all

Function ADInAsVolt() Float 
it wont compile should i do.

Code: Select all

Function ADInAsVolt() As Float 
by mazur50
Thu Apr 02, 2009 5:29 pm
Forum: Compiler
Topic: Percentages
Replies: 3
Views: 2140

Percentages

How can i desplay a percentage of a pot on a ADC on a LCD when i do it i gaet Zero when at like 50% it only works at 100%

Code: Select all

Function ADInAsVolt() As Word
                      
    result = ((ADC.Read(0) + 4) / 1024) * 100      
  
End Function