Search found 240 matches
- Thu Oct 30, 2025 8:55 am
- Forum: General
- Topic: FC11 Serial Debugging
- Replies: 2
- Views: 55
FC11 Serial Debugging
Hi FC team, Do you have getting started notes on the hardware serial de-bugging features of FC 11. I've found the Serial Monitor funtion, under runtime tools and the wiki example. Which I think is a tool to allow Hardware to send/recieve data directly from a Console, rather than using a 3rd party co...
- Sun Oct 19, 2025 5:38 pm
- Forum: App Developer
- Topic: COM Port - Setting Port and Baud within App
- Replies: 2
- Views: 5640
Re: COM Port - Setting Port and Baud within App
Thanks that woirks a treat. J.
- Fri Oct 10, 2025 6:10 pm
- Forum: Projects - Embedded
- Topic: Setting Register Value in C Code
- Replies: 8
- Views: 8526
Re: Setting Register Value in C Code
Intersting and make sense but :) if I use the Bitfield name the compiler throws an error. But 'BRGCON1bits.BRP0 = 1' will pass 3698: BRGCON1bits.BRP = 1; ^ (255) not a member of the struct/union "" ^ (182) illegal conversion between types int -> volatile union S783
- Fri Oct 10, 2025 2:47 pm
- Forum: Projects - Embedded
- Topic: Setting Register Value in C Code
- Replies: 8
- Views: 8526
Re: Setting Register Value in C Code
Hi, this method of setting values in registers work well for me. REGISTERNAMEbits.BITNAME for example, BRGCON2bits.SAM = 1; // Set the SAM bit to 1 in Register BRGCON2 However if a bit field is longer than one bit, how do I refer to the BitFields name? Do I just refer to the lowest value bit, bit0? ...
- Fri Oct 03, 2025 9:44 am
- Forum: General
- Topic: Programming Debugging PICkit5 vs PICkit3
- Replies: 6
- Views: 3150
Re: Programming Debugging PICkit5 vs PICkit3
Oh, If the FC team are working on a UART debug feature. Is a compatible AppDev component possible? just a thought.
J.
- Fri Oct 03, 2025 9:36 am
- Forum: General
- Topic: Programming Debugging PICkit5 vs PICkit3
- Replies: 6
- Views: 3150
Re: Programming Debugging PICkit5 vs PICkit3
Hi. PICkit5...Well It seems to Work! If you also are new to the PICkit5, DONT just Connect your PICkit5 to your PC. (I did!) A) First Download latest MPLAB IPE. In my case it was v6.25 The installer asked if it should install the latest MPLAB IDE and install the latest 8bit and dsPIC packages etc. I...
- Thu Oct 02, 2025 4:41 pm
- Forum: Tips & Tricks
- Topic: Display Diagnotic Values from PIC UART
- Replies: 0
- Views: 5495
Display Diagnotic Values from PIC UART
Hi, This program uses AppDeveloper to display Names and Values sent over a Serial COM link. This is usful for Custom microcontroller devices in the field or being debugged, having the program send out internal values can be very helpful. During testing and a 57K baud serial link, I'm getting a relia...
- Thu Oct 02, 2025 9:40 am
- Forum: App Developer
- Topic: COM Port - Setting Port and Baud within App
- Replies: 2
- Views: 5640
COM Port - Setting Port and Baud within App
Hi, I have an App Developer program which recieves Serial Data from a PIC, this is working well. But how can I Refresh COM Port, Change Port and Change Baud Rate from within a deployed/Running App? I tried to make the properties visible but could not make this work. A Running app wont set focus on t...
- Wed Oct 01, 2025 4:53 pm
- Forum: General
- Topic: Programming Debugging PICkit5 vs PICkit3
- Replies: 6
- Views: 3150
Re: Programming Debugging PICkit5 vs PICkit3
Thanks Ben, Great update. I always have a UART breakout as I use it to dump Values to a App Dev program or a Terminal, so a UART ICD would be great and very universal. I've taken the jump and have a PICkit5 on the way for £60 from Farnell. So standby for a dumb "what does this error message mea...
- Wed Oct 01, 2025 11:55 am
- Forum: General
- Topic: Programming Debugging PICkit5 vs PICkit3
- Replies: 6
- Views: 3150
Programming Debugging PICkit5 vs PICkit3
Hi, New project using an dsPIC33EV 256GM102, 5V version dsPIC. I beleive this cannot be programmed with a PICkit3, same for any new PIC devices after June 2019. MPLAB IPE v5.50 finds the PICkit3 but it wont let me apply any dsPIC33 settings to it, so... I think I'll have to upgrade to the PICkit5, a...