Search found 2 matches

by Wieger
Mon Feb 20, 2023 5:48 pm
Forum: Flowcode V8
Topic: Problems with analog inputs by migration from a PIC 12F617 to a PIC 12CE674
Replies: 3
Views: 13195

Re: Problems with analog inputs by migration from a PIC 12F617 to a PIC 12CE674

Hello Steve, Thanks for your fast reply. With your advices it's working now. Before the main loop I added C-code: ADCON1 = 0x04; /* AN0 and AN1 enabled */ TRIS = 0x03; /* GP0/GP1 input GP2,4,5 output */ Instead of the call of the component macro getByte I added the next instructions: ADCON0 = 0xC5; ...
by Wieger
Mon Feb 20, 2023 1:03 pm
Forum: Flowcode V8
Topic: Problems with analog inputs by migration from a PIC 12F617 to a PIC 12CE674
Replies: 3
Views: 13195

Problems with analog inputs by migration from a PIC 12F617 to a PIC 12CE674

Hello there everybody, My first question of this forum. I have hundreds of PIC chips 12CE674 from a project of 20 years ago, this are OTP types. (One Time Programmable) . I want use this devices. I decide first to make an application with a almost similar type 12F617. I use Flowcode 8 with the EB006...