Search found 82 matches

by RKP
Wed Nov 25, 2020 6:58 pm
Forum: Compiler
Topic: SF 2.2.3.6 and 18FxxQ84 CONFIG
Replies: 2
Views: 2782

Re: SF 2.2.3.6 and 18FxxQ84 CONFIG

Jerry,

Thanks for your continuing effort to keep the Swordfish Compiler updated for the use of the newer Microchip parts.
by RKP
Wed Sep 23, 2020 2:07 am
Forum: IDE
Topic: UMC Build Error
Replies: 17
Views: 11770

Re: UMC Build Error

Thanks Jerry, can't wait to try it out.
After I figure why the TMR2 and PWM5 don't work on the 46K22 but worked fine on 26K22.

Keith
by RKP
Mon Sep 21, 2020 12:11 am
Forum: IDE
Topic: UMC Build Error
Replies: 17
Views: 11770

Re: UMC Build Error

Wow, thanks Jerry.
Looking forward to using a bootloader with the 46K42.
I surely would like to buy you a beer, that's of course if you consume alcohol.

Keith
by RKP
Sun Sep 20, 2020 6:04 pm
Forum: IDE
Topic: UMC Build Error
Replies: 17
Views: 11770

Re: UMC Build Error

Jerry, Thanks, that solved the issue. I can now make a bootloader for the 18F452. Unfortunately for me I would like to make a bootloader for the PIC18F46K42. Since that PIC is a fairly new part, there is not a device file in the old MPLAB 8.92. I did see your post "new SystemConvert V1.40" about the...
by RKP
Sun Sep 13, 2020 2:06 am
Forum: IDE
Topic: UMC Build Error
Replies: 17
Views: 11770

Re: UMC Build Error

Jerry, I did the changes that you suggested but now the error is.
No device file found for "18F452"

David, I downloaded MPLAB 8.92 and I get the same error above.

Thanks for your suggestions but i guess no bootloader for me.

Keith
by RKP
Sat Sep 12, 2020 2:43 am
Forum: IDE
Topic: UMC Build Error
Replies: 17
Views: 11770

UMC Build Error

I am struggling to get a UMC Builder to create a hex file. After adding the paths for the MPASM and the device files. The last error that I can't over come is this : It gives a UMC Generation Error of " Device "18F452" cannot self program" I am sure it is an operator error but i cannot seem to figur...
by RKP
Tue Mar 31, 2020 9:09 pm
Forum: Compiler
Topic: Vector Interrupts
Replies: 10
Views: 6301

Re: Vector Interrupts

Jerry, Thanks for the heads up. Unfortunately I have the Rev1 Curiosity HPC board. I guess that will make my choice the 18F26K42 for now. I guess I can try to hack the Curiosity HPC to program with my Pickit2 with the "PICKitPlus" firmware software. The new firmware supports the 18F26K42 now, and ho...
by RKP
Tue Mar 31, 2020 1:21 pm
Forum: Compiler
Topic: Vector Interrupts
Replies: 10
Views: 6301

Re: Vector Interrupts

Thanks Jerry for the update. Not sure which one I am going to use at the moment. I have a Curiosity HPC board, that according to Microchip can handle both chips. About four years ago I did a tasked that used a 18F14K50 as a USB to UART to interface with a 16F1508. Now I have a similar task but want ...
by RKP
Tue Mar 31, 2020 2:40 am
Forum: Compiler
Topic: Vector Interrupts
Replies: 10
Views: 6301

Vector Interrupts

Gentlemen,

I am looking forward to using the 18F26K42 or the 18F26Q43 and with vector interrupts.
Does the compiler support either of these two PICs?
Also does it support vector interrupts?

Thanks,
RKP
by RKP
Sat Nov 02, 2019 5:46 pm
Forum: Compiler
Topic: New version (2.2.3.0) and Win 10
Replies: 3
Views: 3859

Re: New version (2.2.3.0) and Win 10

Thanks David and Jerry, you gentlemen pointed me in the right direction. For all David questions the answer is yes. The compiler was doing it's thing but no hex and success results. The issue was the antivirus software Bitdefender. It for some reason decide to block files from going into the documen...
by RKP
Sat Nov 02, 2019 2:12 am
Forum: Compiler
Topic: New version (2.2.3.0) and Win 10
Replies: 3
Views: 3859

New version (2.2.3.0) and Win 10

Hi Gents, Is anyone having compiling issues with the new compiler version and windows 10 home? I just got a new laptop with Win 10 and installed the new version of Swordfish. I am trying to compile a sample program but it does not produce a hex file. It does produce two files a .cof and .idf but no ...
by RKP
Sun Oct 25, 2015 12:31 am
Forum: General
Topic: Windows 10
Replies: 1
Views: 4646

Windows 10

Just a few questions.

Is it worth the free upgrade?
Does Swordfish work with Win10?
Also does Firewing work with Win10?

RKP
by RKP
Fri Sep 26, 2014 8:47 pm
Forum: User Modules
Topic: FTT with Swodfish
Replies: 7
Views: 5667

Re: FTT with Swodfish

Hi Jerry, I seem to have the same issue that Coccoliso has, in that i cannot get Firewing to successfully compile for Swordfish. This is an example that was used on the FW forum. As you can see the compiler selected is SF but i receive the ASM ERRORS during compile. Also the include file is in the c...
by RKP
Fri Jun 07, 2013 1:11 pm
Forum: Modules
Topic: LCD Module Lag on Initalize
Replies: 5
Views: 3393

I an not sure which oscillator you are using. Your code selects internal 8MHz osc. with PLL enabled but the 18F46K20 definition file defaults to FOSC = HS. You need to add Config FOSC= INTIO67 to your prgram. EX. Device = 18F46K20 Clock = 32 Config FOSC= INTIO67 #option LCD_DATA = PORTB.0 #option LC...
by RKP
Wed Apr 10, 2013 1:12 pm
Forum: Compiler
Topic: Watchdog timer on low voltage recovery
Replies: 3
Views: 2816

RadioT, I give a shot. The watch dog timer will restart an already running PIC when the code is hung somewhere, waiting for something to happen that doesn't; like a blocking call. What you need is the BOR , but since you used an external reg, this is not available. What I believe is happening is whe...