Author |
Message |
Topic: GPIO bridge |
jackhab
Replies: 4
Views: 13507
|
Forum: General CCS C Discussion Posted: Thu Aug 27, 2020 9:36 am Subject: GPIO bridge |
There is not a really good way.
Problem is any software solution, is only going to work, if the code is being
called. If the processor is off doing something else (delaying, or servicing
an interr ... |
Topic: GPIO bridge |
jackhab
Replies: 4
Views: 13507
|
Forum: General CCS C Discussion Posted: Thu Aug 27, 2020 7:24 am Subject: GPIO bridge |
Piece of wire ?
Hey, it's hot here....
Though really what's the purpose, unless the program has to control WHEN the output pin follows the input pin ??
Piece of wire is exactly what ... |
Topic: GPIO bridge |
jackhab
Replies: 4
Views: 13507
|
Forum: General CCS C Discussion Posted: Tue Aug 25, 2020 11:54 am Subject: GPIO bridge |
Hi,
What is the fastest way to bridge between two pins so that one pin outputs the value of other?
Currently I'm using:
#use fast_io(a)
output_bit(PIN_A1, input(PIN_A5));
Is there a bett ... |
Topic: Header file for built-in function |
jackhab
Replies: 8
Views: 18703
|
Forum: General CCS C Discussion Posted: Sat Apr 06, 2019 10:11 am Subject: Header file for built-in function |
That means you have a very old compiler. The bif definitions were introduced
with the V5 compiler, in about 2013.
There was a list of at least some prototypes for MPLAB published here
before that. ... |
Topic: Header file for built-in function |
jackhab
Replies: 8
Views: 18703
|
Forum: General CCS C Discussion Posted: Thu Apr 04, 2019 1:57 am Subject: Re: Header file for built-in function |
Is there a header with all built-in functions and defines so that I can get rid of unresolved identifiers in the IDE?
The .h file for your PIC lists all the built-in functions.
For example, the ... |
Topic: Header file for built-in function |
jackhab
Replies: 8
Views: 18703
|
Forum: General CCS C Discussion Posted: Wed Apr 03, 2019 11:27 am Subject: Header file for built-in function |
I just started using CCS with MPLAB X.
Is there a header with all built-in functions and defines so that I can get rid of unresolved identifiers in the IDE?
If not, is there some kind of a list ... |
|