Search found 28 matches

by mister_e
Sat Jun 30, 2007 5:40 pm
Forum: Compiler
Topic: Support For PIC18F2458/2553/4458/4553 USB PIC's
Replies: 8
Views: 6689

I used Microchip direct a few times for newer devices. Prices are fair. Delivery is pretty fast.

None of my usual suppliers have 'em in stock :( Samples seems to be available thought!
by mister_e
Sat Jun 30, 2007 5:32 pm
Forum: Compiler
Topic: strange lcd problem
Replies: 4
Views: 3431

Your TRISA setting is false... Bit 5 MUST be an output, so, it should be

Code: Select all

TRISA = %11000110
Also, the last Write at should be at line 3 or 4

Code: Select all

WriteAt(3,1,"Connected to pc")
HTH
by mister_e
Fri Jun 01, 2007 5:28 pm
Forum: Compiler
Topic: SUART Question
Replies: 24
Views: 13856

If at very least 1/10 of the user knew what's happen behind the scene when they use a compiler, this would save tons of headaches... Even using a timeout, i don't see ANY advantages to use a Software Serial communication to grab to some data. OK, add few flow control i/o, i would agree.. unless, it'...
by mister_e
Fri Jun 01, 2007 5:19 pm
Forum: Compiler
Topic: Toggle question
Replies: 3
Views: 2884

always worthwhile to look at the generated asm

Code: Select all

I1_F1_000003 ; L#MK Toggle(LED1)
        BTG LATB,5
        BCF TRISB,5,0
        BRA WHILE_0
So yeah, it will use LATB. Yet another kinda fussy writing stuff ;)
by mister_e
Mon May 14, 2007 12:56 pm
Forum: Compiler
Topic: Internal OSC & PLL - 18F2620
Replies: 4
Views: 4293

try this one Device = 18F2620 Clock = 32 Config OSC = INTIO67 Include "usart.bas" SetBaudrate(br9600) OSCCON = %01111100 // Sets up the internal oscillator OSCTUNE.6 = 1 // Enables PLL While true USART.Write("Power Is On", 13, 10) Wend Main difference here... OSCCON setting. I agree, internal OSC an...
by mister_e
Thu Mar 01, 2007 8:49 pm
Forum: Compiler
Topic: Well Done
Replies: 20
Views: 11525

Hi Lubo,
Sorry, but i'm not talking about code size, which to me is mostly pointless to compare.

I'm talking about ease of use, reliability, stability, flexibility, amount of bugs/issues etc etc etc, but not the code size.
by mister_e
Fri Feb 23, 2007 2:00 am
Forum: Compiler
Topic: Well Done
Replies: 20
Views: 11525

http://www.mister-e.org/Pics/looking_good_thumb.gif I agree with Bruce. I also have tested many different compiler C & Basic and for various Microcontroller brand. BY FAR, Swordfish beat everything else already on the market. Add PIC24 and DsPIC WOOOHOOOO end of life for few other compiler here :D ...
by mister_e
Mon Feb 12, 2007 7:35 pm
Forum: User Modules
Topic: SD FILE SYSTEM - NEW OPTIONS???
Replies: 7
Views: 6602

It happened to me bunch of time with with some of my customer 'till now. It's something i DON'T support. They're aware that they MUST use SD compliant card, unless the warranty is void forever. Some of those $%$% card may even damage your product... Have a look at the following.... http://kb.palm.co...
by mister_e
Mon Feb 05, 2007 11:13 pm
Forum: Compiler
Topic: boot loader problem
Replies: 5
Views: 4115

Maybe it flash the LED, but the PORTB.5 pin is configured as the PIC PGM pin. Hence, it disable this I/O and your LCD don't work.

It's actually just a little mistake in the default Bootloader firmware file. Just set LVP to OFF, then save it. Will be fixed forever.
by mister_e
Mon Feb 05, 2007 6:46 pm
Forum: Compiler
Topic: boot loader problem
Replies: 5
Views: 4115

It will not solve the problem, but i'd spotted a slight problem in the SetAllDigital command I103_F1_000014 ; L#MK SETALLDIGITAL 104_F5_000445 ; L#MK ADCON1 = $0F MOVLW 15 MOVWF ADCON1,0 I105_F5_000446 ; L#MK CMCON = $07 MOVLW 7 MOVWF CMCON,0 CMCON setting is O.K, but ADCON1 should be 7. Using ADCON...
by mister_e
Thu Feb 01, 2007 12:17 am
Forum: Compiler
Topic: SFWBasic future ?
Replies: 6
Views: 4519

I can't talk for David but, as far i remind, an ICD is on the to-do list. The PBP ICD have been made by Mecanique, not Melabs as some still think... So it was a David 'creation' I'm not a ICD fan, so to me modules, new feature are, by far , much important. You can still use a simple serial communica...
by mister_e
Fri Jan 12, 2007 8:09 pm
Forum: Compiler
Topic: can we use absolute keyword ? USB support ???
Replies: 6
Views: 5038

Yes yes yes, me too!!!

Maybe a golden occasion to convert my PBP USBDemo code and post it here... and ruine Darrel's life once again :lol:

Image

Just kidding Darrel :twisted:
by mister_e
Wed Dec 20, 2006 6:10 am
Forum: Compiler
Topic: Problems to identify Interrupts
Replies: 35
Views: 19530

Bah, once you know you need it ;)
by mister_e
Tue Dec 19, 2006 5:57 pm
Forum: Compiler
Topic: Problems to identify Interrupts
Replies: 35
Views: 19530

DOH! Yeah i goofed ADCON1=$0F don't apply in here... but it's not 100% my fault (well... hum hum)... i looked in the SetAllDigital sub and ... something need to be changed... When using SetallDigital on this device, the asm generated is.. I10_F1_000032 ; L#MK SETALLDIGITAL I11_F3_000441 ; L#MK ADCON...
by mister_e
Mon Dec 18, 2006 7:03 pm
Forum: Compiler
Topic: Problems to identify Interrupts
Replies: 35
Views: 19530

You're SOOOOOOO close. First you need to disable the ADCs , this will make you led working. BUT the most important step here... you must Enable the Interrupts. Or it will never work. Oh well the EasyPic4 will look at you and say... "Hey guy.. it's getting boring here to spin in round!" :wink: Once d...