Author |
Message |
Topic: PIC24FJ512GU/GL406 POR Issue |
Mrinmoy
Replies: 2
Views: 66
|
Forum: General CCS C Discussion Posted: Tue Mar 11, 2025 12:30 am Subject: PIC24FJ512GU/GL406 POR Issue |
Hi,
I am using PIC24FJ512GL/GU406 both MCU(Anyone at a time) in one of my project with our own pcb board and using CCS version 5.101. The control board contains two mcu each performs its own differ ... |
Topic: PIC24F Series 64-bit data handling Problem |
Mrinmoy
Replies: 3
Views: 3272
|
Forum: General CCS C Discussion Posted: Thu Nov 14, 2024 12:04 am Subject: PIC24F Series 64-bit data handling Problem |
Yes. You are right.
This limitation has MPLAB IDE itself, but internally it is working perfectly.
You just show a good way to handle such problems that I learned.
Thanks for support. |
Topic: PIC24F Series 64-bit data handling Problem |
Mrinmoy
Replies: 3
Views: 3272
|
Forum: General CCS C Discussion Posted: Wed Nov 13, 2024 3:29 am Subject: PIC24F Series 64-bit data handling Problem |
Hi,
I am using PIC24FJ512GU406 in one of my project and my CCS compiler version is V-5.101.
unsigned int64 g_ui64TestTemp = 1270000;
unsigned int64 g_ui64WtSum = 0;
for(g ... |
Topic: PIC24F Clock frequency multiply problem |
Mrinmoy
Replies: 4
Views: 4190
|
Forum: General CCS C Discussion Posted: Sat Sep 21, 2024 1:19 am Subject: PIC24F Clock frequency multiply problem |
Yes! I just check it.
CPU of that particular controller can run maximum at 16MHz.
Thanks guys.  |
Topic: PIC24F Clock frequency multiply problem |
Mrinmoy
Replies: 4
Views: 4190
|
Forum: General CCS C Discussion Posted: Fri Sep 20, 2024 1:40 am Subject: PIC24F Clock frequency multiply problem |
Hi Everyone,
I am using PIC24FJ512GL406 mcu in one of my project and using 32MHz external oscillator and want to double the clock frequency by using PLL.
//********* CPU Settings *********** ... |
Topic: PIC24F series program memory use case as storing some data |
Mrinmoy
Replies: 5
Views: 5337
|
Forum: General CCS C Discussion Posted: Wed Aug 21, 2024 12:45 pm Subject: PIC24F series program memory use case as storing some data |
Hello everyone,
I am using PIC24FJ512GL406 in one of my project and my ccs version is V-5.101. I want to store some configuration data(max 1kB) of my application in the program memory as there is no ... |
Topic: PIC24F Series uart problem |
Mrinmoy
Replies: 10
Views: 8976
|
Forum: General CCS C Discussion Posted: Wed Aug 21, 2024 9:11 am Subject: PIC24F Series uart problem |
@Ttelmah
Thank you for your valuable help and clearly written words that help me to understand my mistakes.
Actually I treat PIC24s UART same as PIC18s where I made the main mistake where use of kb ... |
Topic: PIC24F Series uart problem |
Mrinmoy
Replies: 10
Views: 8976
|
Forum: General CCS C Discussion Posted: Sat Aug 10, 2024 10:36 pm Subject: PIC24F Series uart problem |
@Ttelmah thank you for your comments. It helps me to understand the situation little bit. But if ERRORS doesn't work for 24Fs series then uart will recover if they hang? |
Topic: PIC24F Series uart problem |
Mrinmoy
Replies: 10
Views: 8976
|
Forum: General CCS C Discussion Posted: Sat Aug 10, 2024 8:31 am Subject: PIC24F Series uart problem |
I found some points from ccs help but need some illustration.
1. Use of ERROR in #use re232.
2. Use of RECEIVE_BUFFER in options of #use rs232
It will be very helpful if someone give some expla ... |
Topic: PIC24F Series uart problem |
Mrinmoy
Replies: 10
Views: 8976
|
Forum: General CCS C Discussion Posted: Sat Aug 10, 2024 6:36 am Subject: PIC24F Series uart problem |
@temtronic
Yes, I am using ISR for rceiving data and ERRORS in #use rs232. Here are some parts of my code
//// ############### Configure UART1 -> Using for MCU -> CAMERA ########
#PIN_S ... |
Topic: PIC24F Series uart problem |
Mrinmoy
Replies: 10
Views: 8976
|
Forum: General CCS C Discussion Posted: Sat Aug 10, 2024 6:05 am Subject: PIC24F Series uart problem |
Hi,
I am using PIC24FJ512GL406 in one of my project where my ccs version is 5.101.
In that project I am taking data from camera to microcontroller using RS232. I am facing a issue of receiving par ... |
Topic: PIC24F Oscillator Output PIN Problem |
Mrinmoy
Replies: 12
Views: 14504
|
Forum: General CCS C Discussion Posted: Wed Dec 27, 2023 1:56 am Subject: PIC24F Oscillator Output PIN Problem |
@Gaugeguy & @temtronic
Now it is clear to me. For clock selection fuse bits the #use delay() command will automatically set that. No need to specify it explicitely. |
Topic: PIC24F Oscillator Output PIN Problem |
Mrinmoy
Replies: 12
Views: 14504
|
Forum: General CCS C Discussion Posted: Tue Dec 26, 2023 10:46 am Subject: PIC24F Oscillator Output PIN Problem |
@Ttelmah
Your point is good and make me rethink about the clock setup for our control boards. But I am little confused; in your fuse bits there is no oscillator source
selection bits and their t ... |
Topic: PIC24F Oscillator Output PIN Problem |
Mrinmoy
Replies: 12
Views: 14504
|
Forum: General CCS C Discussion Posted: Tue Dec 26, 2023 10:04 am Subject: PIC24F Oscillator Output PIN Problem |
@Ttelmah
I can't find this exactly. Can you help me to setup fuse bits where I am using an external oscillator circuit to generate a clock of 32MHz for the PIC24F family microcontroller. |
Topic: PIC24F Oscillator Output PIN Problem |
Mrinmoy
Replies: 12
Views: 14504
|
Forum: General CCS C Discussion Posted: Thu Dec 21, 2023 12:03 am Subject: PIC24F Oscillator Output PIN Problem |
@Ttelmah
#pragma fuses EC,XT,HS,PR,NOPROTECT,WDT,NOBROWNOUT,DEBUG,CKSNOFSM,NOJTAG,NOWRT
#pragma use delay(clock=32000000,restart_wdt)
Above code is my fuse bits and clock setup.
... |
|