Author |
Message |
Topic: [off topic] For folks interfacing with ESP32s |
jeremiah
Replies: 3
Views: 191
|
Forum: General CCS C Discussion Posted: Mon Mar 10, 2025 4:18 pm Subject: [off topic] For folks interfacing with ESP32s |
It's not a backdoor...
If you look at the update, it was originally referred to as one in the article. I'll update the topic but please try to give some leeway in the future. Not everyone is perf ... |
Topic: [off topic] For folks interfacing with ESP32s |
jeremiah
Replies: 3
Views: 191
|
Forum: General CCS C Discussion Posted: Sat Mar 08, 2025 9:50 pm Subject: [off topic] For folks interfacing with ESP32s |
I remembered a few folks here connect up to ESP32s with their PICs. There's apparently some security concerns with them to be aware of if the ESP32s are part of your system.
https://www.bleeping ... |
Topic: Ccsloader freezes |
jeremiah
Replies: 2
Views: 415
|
Forum: CCS ICD / Mach X / Load-n-Go Posted: Fri Feb 28, 2025 7:41 am Subject: Re: Ccsloader freezes |
At linux terminal,using ccsloader software
when i try to program pic16f1824 with icd-u80
if i give AREAS=PC option program freezes and does nothing
otherwise it is working fine
Actualy i ... |
Topic: INT_EXT on 18f46k22 |
jeremiah
Replies: 11
Views: 2243
|
Forum: General CCS C Discussion Posted: Wed Feb 05, 2025 8:56 am Subject: INT_EXT on 18f46k22 |
From help file:
So much for trusting the defaults :-). And I actually tried with source set, but I put one there instead of 0, for the first external interrupt :-). Anyway, thanks. With the correct s ... |
Topic: INT_EXT on 18f46k22 |
jeremiah
Replies: 11
Views: 2243
|
Forum: General CCS C Discussion Posted: Wed Feb 05, 2025 8:51 am Subject: INT_EXT on 18f46k22 |
Er. Why are you not telling the command which interrupt to use.....
<snipped>
If you look at the declaration for ext_int_edge, it says:
ext_int_edge(int8 source, int8 edge);
_sourc ... |
Topic: INT_EXT on 18f46k22 |
jeremiah
Replies: 11
Views: 2243
|
Forum: General CCS C Discussion Posted: Wed Feb 05, 2025 8:09 am Subject: INT_EXT on 18f46k22 |
First thing I would suggest is to report the bug to CCS support (this is a user forum, so they don't often check here). That way it can get fixed.
I'm using v5.113 of the compiler and if you suppl ... |
Topic: CCSC.exe/CCSCOMPILE.exe passing in #defines as quoted string |
jeremiah
Replies: 12
Views: 3137
|
Forum: General CCS C Discussion Posted: Sat Feb 01, 2025 9:54 pm Subject: CCSC.exe/CCSCOMPILE.exe passing in #defines as quoted string |
It’s one of several tickets I have with them now. They gave me two solutions and neither worked. Still waiting. They did send me a ccscompile to fix error return codes.
For what it is worth, wh ... |
Topic: CCSC.exe/CCSCOMPILE.exe passing in #defines as quoted string |
jeremiah
Replies: 12
Views: 3137
|
Forum: General CCS C Discussion Posted: Sat Feb 01, 2025 1:37 pm Subject: CCSC.exe/CCSCOMPILE.exe passing in #defines as quoted string |
Yeah, just using Windows command prompt. I'm not sure what else they would design their command lines tools for Windows to run in. But it may have to do with the language their compiler was written in ... |
Topic: CCSC.exe/CCSCOMPILE.exe passing in #defines as quoted string |
jeremiah
Replies: 12
Views: 3137
|
Forum: General CCS C Discussion Posted: Fri Jan 31, 2025 9:21 am Subject: CCSC.exe/CCSCOMPILE.exe passing in #defines as quoted string |
If you can't figure out how to escape the quotes, you can try a work around using precompiler stringification:
#define NAME_STR(x) #x
#define VALUE_STR(x) NAME_STR(x)
... |
Topic: CCSC.exe error code list? |
jeremiah
Replies: 3
Views: 1803
|
Forum: General CCS C Discussion Posted: Fri Jan 17, 2025 9:23 am Subject: CCSC.exe error code list? |
I don't know if this is exhaustive or not, but when I open up PCWHD and use the help dialog: In the "Search" tab, I searched for: errror
some of the results were of the format like e1000 ... |
Topic: TMR2 on PIC18F26Q83 as One Shot |
jeremiah
Replies: 13
Views: 4621
|
Forum: General CCS C Discussion Posted: Fri Jan 17, 2025 8:08 am Subject: Re: TMR2 on PIC18F26Q83 as One Shot |
Hi,
Reading the datasheet TMR2 has a one-shot mode and an edge detector.
I would like to create a one-shot triggered on a positive edge of an externally applied signal. I want the one-shot output ... |
Topic: Command line for ICD interface - factory programming |
jeremiah
Replies: 30
Views: 18035
|
Forum: General CCS C Discussion Posted: Tue Jan 14, 2025 11:06 am Subject: Command line for ICD interface - factory programming |
Sorry, I didn't realize posting to a thread a little less than a year old that didn't appear answered (at least to me) would be considered necro'ing. The title 'Command line for ICD interface - facto ... |
Topic: Command line for ICD interface - factory programming |
jeremiah
Replies: 30
Views: 18035
|
Forum: General CCS C Discussion Posted: Mon Jan 13, 2025 3:26 pm Subject: Command line for ICD interface - factory programming |
Just a heads up. Necro'ing a year old thread is usually very bad form. It can lead to a lot of confusion in discussion and responses. In the future, it is probably better to start your own thread o ... |
Topic: structures |
jeremiah
Replies: 6
Views: 3810
|
Forum: General CCS C Discussion Posted: Fri Dec 20, 2024 11:27 pm Subject: structures |
Does int1 turn in to something other than a byte? I thought I just saw it in one of the header files and it was a bool?
It can yes. The PIC supports general bit set/test/clear/etc instructions, so ... |
Topic: SOLVED: PIC24 and getting the Configuration Bits address? |
jeremiah
Replies: 20
Views: 10137
|
Forum: General CCS C Discussion Posted: Wed Dec 18, 2024 8:34 am Subject: SOLVED: PIC24 and getting the Configuration Bits address? |
That is what I'd have expected/hoped. I tried it on a chip I'm using, and
got the figure for the top of memory. Suggests I may get a problem on
this chip if it gets close to using all the memory!!! ... |
|