Author |
Message |
Topic: MAX31865 what am I doing wrong?? |
Steve_P
Replies: 18
Views: 55370
|
Forum: General CCS C Discussion Posted: Fri Aug 27, 2021 6:59 am Subject: MAX31865 what am I doing wrong?? |
Temp Calculation for MAX31865 without float variables:
sint32 t,t1;
t= ADC Value from MAX
t1=t-8192;
t=t1*463;
t=t/1000;
t=t+100000;
t=t*t1;
t=t/32000);
t hold the Tempvalue with two pl ... |
Topic: PIC24FJ1024GA606 Problem with UART5 und UART6 pin select |
Steve_P
Replies: 5
Views: 13177
|
Forum: General CCS C Discussion Posted: Wed Sep 13, 2017 8:27 am Subject: PIC24FJ1024GA606 Problem with UART5 und UART6 pin select |
Thank you!! Of course you are right.... |
Topic: PIC24FJ1024GA606 Problem with UART5 und UART6 pin select |
Steve_P
Replies: 5
Views: 13177
|
Forum: General CCS C Discussion Posted: Tue Sep 12, 2017 10:24 am Subject: PIC24FJ1024GA606 Problem with UART5 und UART6 pin select |
Hi, I want to use all HW-UART of the PIC24FJ1024GA606.
U1TX/RX to U4TX/RX works fine.
U5TX/RX and U6RX/TX are reported as unknown Pin ID.
Compiler Version 5.074
#pin_select U1TX=PIN_B4
#pin_sel ... |
Topic: Problem use the pins of the SOSC as IO (24FJ128GA308) |
Steve_P
Replies: 5
Views: 13081
|
Forum: General CCS C Discussion Posted: Mon Jun 05, 2017 6:01 am Subject: Problem use the pins of the SOSC as IO (24FJ128GA308) |
Ok, thank you for help.
It's my fault: C13 and C14 are not IO, they are only Input-Pin....
F..... , now I have to change the HW |
Topic: Problem use the pins of the SOSC as IO (24FJ128GA308) |
Steve_P
Replies: 5
Views: 13081
|
Forum: General CCS C Discussion Posted: Mon Jun 05, 2017 5:07 am Subject: Problem use the pins of the SOSC as IO (24FJ128GA308) |
Hi, thank you for your fast answer.
I copied this to my h file, but it is the same.
The OSC Pins ( C12/C15 ) are toggle.
The SOSC Pins ( C13/C14 ) don't.
This means the OSCIO fuse seems to w ... |
Topic: Problem use the pins of the SOSC as IO (24FJ128GA308) |
Steve_P
Replies: 5
Views: 13081
|
Forum: General CCS C Discussion Posted: Mon Jun 05, 2017 4:28 am Subject: Problem use the pins of the SOSC as IO (24FJ128GA308) |
Hello
I need to use the SOSC Pins (PIN_C13, PIN_C14) as IO.
I try a lot but it does not work.
For test I use the simple Example blinking LED program
PIN_C12 and C15 toggle, PIN_C13 and C14 don't
... |
|