Author |
Message |
Topic: Writing multiple lines into program memory |
PIC24H
Replies: 3
Views: 7429
|
Forum: General CCS C Discussion Posted: Thu Jul 16, 2015 2:05 pm Subject: Writing multiple lines into program memory |
Thanks for your reply Ttelmah.
Ok I'll try to do that. I am trying to reach the speed of the mplab ide. Mplab takes just several seconds to write it to the pic. |
Topic: Writing multiple lines into program memory |
PIC24H
Replies: 3
Views: 7429
|
Forum: General CCS C Discussion Posted: Thu Jul 16, 2015 6:03 am Subject: Writing multiple lines into program memory |
Hello. I am using the ex_pcd CCS Bootloader. The bootloader writes line after line into the pic. this takes "a lot" of time. Now I am trying to load about 23 lines, so that it writes a bunch ... |
Topic: Open SSL and AES En-/Decryption with ccs compiler |
PIC24H
Replies: 4
Views: 7657
|
Forum: General CCS C Discussion Posted: Thu Apr 09, 2015 3:44 pm Subject: Open SSL and AES En-/Decryption with ccs compiler |
Seriously, unless you have a very large PIC, forget it. I wrote a SSL library for a job, on a DsPIC and ended up using over 130K of code space for the security code....
So in your opinion that does ... |
Topic: Open SSL and AES En-/Decryption with ccs compiler |
PIC24H
Replies: 4
Views: 7657
|
Forum: General CCS C Discussion Posted: Thu Apr 09, 2015 5:42 am Subject: Open SSL and AES En-/Decryption with ccs compiler |
Hello, has anyone had experience with openssl (aes) and the ccs compiler?
Or how to include the files into the project (c code)?
I have e-mailed ccs customer support and asked them if they got a c ... |
Topic: Bootloader in Wrong segment |
PIC24H
Replies: 14
Views: 25460
|
Forum: General CCS C Discussion Posted: Tue Mar 17, 2015 8:39 am Subject: Bootloader in Wrong segment |
As I said in your other thread about this, have you tried with the #ORG definitions that PCM_programmer posted?. You have changed the start address of the #ORG's to 0, while he used 8, to leave space ... |
Topic: Bootloader in Wrong segment |
PIC24H
Replies: 14
Views: 25460
|
Forum: General CCS C Discussion Posted: Tue Mar 17, 2015 7:09 am Subject: Bootloader in Wrong segment |
I have the same problem. I'm using a PIC24HJ256GP610, CCS Compiler ver. 5.040 and a modified ex_pcd_bootloader.c
I want to save the space from 0x00000 till 0x103FF just for the bootloader. But as s ... |
Topic: Application not at the address where it should be (#org) |
PIC24H
Replies: 2
Views: 6521
|
Forum: General CCS C Discussion Posted: Tue Mar 17, 2015 6:56 am Subject: Application not at the address where it should be (#org) |
Have you tried using the first ORG as shown, rather than changing the start address to 0?.
Note that PCM programmer leaves space for the bottom of memory jump instruction, when setting up this first ... |
Topic: Application not at the address where it should be (#org) |
PIC24H
Replies: 2
Views: 6521
|
Forum: General CCS C Discussion Posted: Mon Mar 16, 2015 3:43 am Subject: Application not at the address where it should be (#org) |
Hello forum, I got a little problem. I'm using a pic24hj256gp610 and ccs compiler 5.040
I managed to get the bootloader (CCS example bootloader) to run with no problems. I have modified the bootloa ... |
Topic: Detecting a RS232 connection? |
PIC24H
Replies: 5
Views: 9940
|
Forum: General CCS C Discussion Posted: Fri Mar 06, 2015 7:26 am Subject: Detecting a RS232 connection? |
thank you guys for your help |
Topic: Detecting a RS232 connection? |
PIC24H
Replies: 5
Views: 9940
|
Forum: General CCS C Discussion Posted: Fri Mar 06, 2015 6:50 am Subject: Detecting a RS232 connection? |
Thx for the answer.
Yes, I want the PIC to check/see if the PC (connection to the PC) is there.
For example:
On start of the pic. It should see/detect if its connected to the pc via rs232 co ... |
Topic: Detecting a RS232 connection? |
PIC24H
Replies: 5
Views: 9940
|
Forum: General CCS C Discussion Posted: Fri Mar 06, 2015 4:48 am Subject: Detecting a RS232 connection? |
I got a short question. I have connected my pic24hj256 to my pc via rs232.
Is there a way to detect if its connected to the pc? So if it detects the rs232 connection it will start for example the b ... |
Topic: CCS Bootloader for PIC24HJ256GP610 [SOLVED] |
PIC24H
Replies: 13
Views: 25676
|
Forum: General CCS C Discussion Posted: Thu Mar 05, 2015 3:14 am Subject: CCS Bootloader for PIC24HJ256GP610 [SOLVED] |
The CCS customer support helped me and everything works fine |
Topic: CCS Bootloader for PIC24HJ256GP610 [SOLVED] |
PIC24H
Replies: 13
Views: 25676
|
Forum: General CCS C Discussion Posted: Tue Mar 03, 2015 6:58 am Subject: CCS Bootloader for PIC24HJ256GP610 [SOLVED] |
there are two different USB 'adapters'
1) A real RS-232 <> USB, that HAS RS-232 electronics in it,usually comes with DE-9 connector
2) a TTL<>USB adapter, does NOT have RS-232 electr ... |
Topic: CCS Bootloader for PIC24HJ256GP610 [SOLVED] |
PIC24H
Replies: 13
Views: 25676
|
Forum: General CCS C Discussion Posted: Tue Mar 03, 2015 3:23 am Subject: CCS Bootloader for PIC24HJ256GP610 [SOLVED] |
I think I finally have the problem. When I directly connected it to the rs232 port, without the rs232 to usb adapter it works. I can load files on to the pic with the bootloader. I dont know why my pr ... |
Topic: CCS Bootloader for PIC24HJ256GP610 [SOLVED] |
PIC24H
Replies: 13
Views: 25676
|
Forum: General CCS C Discussion Posted: Tue Mar 03, 2015 2:31 am Subject: CCS Bootloader for PIC24HJ256GP610 [SOLVED] |
Ok the current status is:
I wrote an simple program so that an led blinks. This is the code
#include "24HJ256GP610.h"
#fuses NOWDT, PR_PLL, HS, PUT128, NODEBUG, NOPROTECT, NOJTAG
# ... |
|