Author |
Message |
Topic: Float number problems |
Simone
Replies: 4
Views: 5395
|
Forum: General CCS C Discussion Posted: Sat Nov 03, 2012 3:20 am Subject: Float number problems |
Hi,
I'm using CCS PCD C Compiler for PIC24EP512GU810.
I've a problem with float number operations. Here an example inside a function:
float vAOUT1 = -8.3
float p = 10.0F - vAOUT1;
if & ... |
Topic: Problem with PIC24E 32-bit timer |
Simone
Replies: 6
Views: 9502
|
Forum: General CCS C Discussion Posted: Wed Oct 24, 2012 12:57 am Subject: Problem with PIC24E 32-bit timer |
Thanks,
Now, my timer works! |
Topic: Problem with PIC24E 32-bit timer |
Simone
Replies: 6
Views: 9502
|
Forum: General CCS C Discussion Posted: Tue Oct 23, 2012 9:03 am Subject: Problem with PIC24E 32-bit timer |
Thanks,
I added while loop in my code but interrupt is not intercepted yet.
#define CSDB_TIMER2_3_THR 0x01C9C3
#int_timer3 //Level = 4
void int_timer23_isr()
{
int32 ... |
Topic: Problem with PIC24E 32-bit timer |
Simone
Replies: 6
Views: 9502
|
Forum: General CCS C Discussion Posted: Tue Oct 23, 2012 8:21 am Subject: Problem with PIC24E 32-bit timer |
Hi, I'm beginner to program PIC with CCS PCD compiler.
I'm trying to set a 32-bit timer, but the interrupt is not intercepted.
Here my code:
#define CSDB_TIMER2_3_THR 0x01C9C3
#int_t ... |
|