Search found 241 matches
- Tue Dec 09, 2025 4:03 pm
- Forum: Bug Reports
- Topic: FC11 Software UART Bit Timing?
- Replies: 1
- Views: 19
FC11 Software UART Bit Timing?
Hi, PIC18F2585 20MHz Xtal. Running latest updates. Issues with UART, OK in hardware mode but will not run anything above 9600 in software mode. I usually can run 19200 without issues. Bit timing looks wrong. getting around 22Khz for a 19600 setting. I checked a LED flash at 10hz on scope, good. but ...
- Thu Oct 30, 2025 8:55 am
- Forum: General
- Topic: FC11 Serial Debugging
- Replies: 2
- Views: 326
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: 6091
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: 9079
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: 9079
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: 3634
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: 3634
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: 6279
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: 6091
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: 3634
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...