Search found 1331 matches

by medelec35
Sat Jan 23, 2021 12:11 am
Forum: Bug Reports
Topic: PickIT3 not selectable
Replies: 4
Views: 2739

Re: PickIT3 not selectable

What I do is add my own PIKkit3 entry with the path of where ipecmd.exe is located.
For example, if MPLABX version is 5.45 then you need programmer location as:
C:\Program Files\Microchip\MPLABX\v5.45\mplab_platform\mplab_ipe\ipecmd.exe:
PICkit3 settings.png
PICkit3 settings.png (54.39 KiB) Viewed 2719 times
by medelec35
Fri Jan 22, 2021 9:46 pm
Forum: Feature Requests
Topic: App developer more Button
Replies: 15
Views: 8325

Re: App developer more Button

Hi Stefan,
stefan.erni wrote:
Fri Jan 22, 2021 5:04 pm
Is it possible to add more button components for the App developer like the switch component, but just as a press Button pressed by the mouse?
Take a look at this App.
It uses switches you can press with the mouse.
They can be set up to change text with pressed etc
by medelec35
Fri Jan 22, 2021 9:41 pm
Forum: General
Topic: Help with XC compiler problem
Replies: 9
Views: 4663

Re: Help with XC compiler problem

Hi Wayne. FC6 uses boost C which uses lower case for register names. FC7 and above changed to XC8 which uses upper case for register names. You will also require a different format. Eg. instead of intcon.PEIE = 1; Use st_bit(INTCON,PEIE); For FCV_RX_BUFF[FCV_RX_BUFF_END] = rcreg; use FCV_RX_BUFF[FCV...
by medelec35
Fri Jan 22, 2021 3:50 pm
Forum: Bug Reports
Topic: PickIT3 not selectable
Replies: 4
Views: 2739

Re: PickIT3 not selectable

With PICkit3 selected,
Does the default compiler tick stay ticked for PICkit3 or unticks itself and tick has changed to PIkit2?
PICkit3.png
PICkit3.png (63.49 KiB) Viewed 2733 times
by medelec35
Fri Jan 22, 2021 1:24 pm
Forum: App Developer
Topic: Electrical Test - Component Tester
Replies: 16
Views: 10391

Re: Electrical Test - Component Tester

I have been having a play with the App developer and really enjoying it. In this version, I have changed the way how the resistances are calculated. Also an extra resistor has been added, so it can more accurately calculate higher values resistors. ADC is read with highest value series resistor, and...
by medelec35
Wed Jan 20, 2021 9:00 pm
Forum: Feature Requests
Topic: Print Formatted Number
Replies: 5
Views: 3667

Re: Print Formatted Number

Hi Ben,
Thank you.
BenR wrote:
Wed Jan 20, 2021 10:00 am
While I'm at it what about a print float function with number of floating points param?
That is a great idea!
p.erasmus wrote:
Wed Jan 20, 2021 10:04 am
This is always useful never mind the application LCD,gLCD even in Serial coms :D
I fully agree with that.
by medelec35
Mon Jan 18, 2021 12:59 pm
Forum: Feature Requests
Topic: Print Formatted Number
Replies: 5
Views: 3667

Print Formatted Number

Could PrintFormattedNumber be added to all displays and not just LCD?
Then gLCD can display Long and Ulong numbers, rather than restricting to signed Ints e.t.c.
by medelec35
Sun Jan 17, 2021 2:14 pm
Forum: App Developer
Topic: Electrical Test - Component Tester
Replies: 16
Views: 10391

Re: Electrical Test - Component Tester

I found some interesting reading, if not already read document.
by medelec35
Tue Jan 12, 2021 4:56 pm
Forum: Bug Reports
Topic: Arduino UNO ADC
Replies: 8
Views: 4549

Re: Arduino UNO ADC

Hi Ben,
Thanks for your reply.
I was interested in using AREF the same way as pic uses Vref+ pin.
So ADC = 1023 or 255 (depending on Int or Byte )when voltage on the ADC pin = VREF voltage.
Will the tool tip be amended for ATmega devices?
by medelec35
Mon Jan 11, 2021 10:59 pm
Forum: Bug Reports
Topic: Arduino UNO ADC
Replies: 8
Views: 4549

Re: Arduino UNO ADC

Using conversion of FOSC/128 There are two issues causing confusion. The tool tip has acronyms of VDD and Vref+, but the selection is AREF, AVCC and Internal 1.1V So they don't match. I would have thought AREF is suing using external AREF pin to set reference level and AVCC will be using internal VD...