Author |
Message |
Topic: Authentication in web server with PIC18F67J60 |
Max
Replies: 4
Views: 13402
|
Forum: General CCS C Discussion Posted: Mon Sep 02, 2019 4:34 am Subject: Authentication in web server with PIC18F67J60 |
Thanks for reply,
I tried, the post of the link I had read, but I can't get it to work.
I have inserted
int1 http_check_authentication(char *fileName, char *user, char *pwd)
{
... |
Topic: Authentication in web server with PIC18F67J60 |
Max
Replies: 4
Views: 13402
|
Forum: General CCS C Discussion Posted: Fri Aug 30, 2019 12:37 pm Subject: Authentication in web server with PIC18F67J60 |
Dear all,
I built a small card with PIC18F67J60 with some I/O, I built a TCP/IP wizard project with the 5.076 version.
I modified the index.html and index.xml page by adding some buttons. Using make ... |
Topic: Usb_bootloader PIC24EP512GU810 (Solved) |
Max
Replies: 10
Views: 16306
|
Forum: General CCS C Discussion Posted: Thu Aug 06, 2015 8:47 am Subject: Usb_bootloader PIC24EP512GU810 (Solved) |
The better solution if there is enough ROM, is to reduce the top of memory the code uses (#ORG), so that the highest location is a byte below the start of the top page.
Hi Ttelmah,
using #ORG ... |
Topic: Usb_bootloader PIC24EP512GU810 (Solved) |
Max
Replies: 10
Views: 16306
|
Forum: General CCS C Discussion Posted: Tue Aug 04, 2015 2:52 pm Subject: Usb_bootloader PIC24EP512GU810 (Solved) |
Support CCS write
to modify the bootloader:
else if ((line_type == 0) && (addr >= (int32)APPLICATION_START) && (addr < ((int ... |
Topic: Usb_bootloader PIC24EP512GU810 (Solved) |
Max
Replies: 10
Views: 16306
|
Forum: General CCS C Discussion Posted: Mon Aug 03, 2015 11:59 pm Subject: Solved |
Dear All,
I solved the problem.
In my source code use many:
Rom char *mystring[]=
{
"12345",
"abcde",
"fghil",
".....
... |
Topic: Usb_bootloader PIC24EP512GU810 (Solved) |
Max
Replies: 10
Views: 16306
|
Forum: General CCS C Discussion Posted: Thu Jul 30, 2015 3:18 am Subject: File hex out memory flash |
Doing more debugging,
This is due because at a certain point of the hex file contains:
1) : 02000004000AF0 and in the row after
2) :1098300054656C0065666F006E6F00006E756D009C
... |
Topic: Usb_bootloader PIC24EP512GU810 (Solved) |
Max
Replies: 10
Views: 16306
|
Forum: General CCS C Discussion Posted: Wed Jul 29, 2015 3:02 am Subject: Usb_bootloader PIC24EP512GU810 (Solved) |
ok maybe you're right, but do not get to read it stops before
exactly where to write in program memory line 7565,
or rather when reads
read_program_memory (addr, date, count);
in ord ... |
Topic: Usb_bootloader PIC24EP512GU810 (Solved) |
Max
Replies: 10
Views: 16306
|
Forum: General CCS C Discussion Posted: Tue Jul 28, 2015 10:36 am Subject: Usb_bootloader PIC24EP512GU810 (Solved) |
:00000001FF
Note the 01 before the FF
That is what it is looking for to end the file.
this is positioned to buffer[8] not [7]
(buffer[0] = ":" ) |
Topic: Usb_bootloader PIC24EP512GU810 (Solved) |
Max
Replies: 10
Views: 16306
|
Forum: General CCS C Discussion Posted: Tue Jul 28, 2015 8:36 am Subject: Usb_bootloader PIC24EP512GU810 (Solved) |
Hello,
I'm working with usb_bootloader but I have a problem.
Processor PIC24EP512GU810
Compiler V 5.046
I plugged in the processor as in the bootloader 'example ex_usb_bootloader.c, I put in my ... |
Topic: Stack Resize in PIC24 |
Max
Replies: 16
Views: 27319
|
Forum: General CCS C Discussion Posted: Mon Jun 15, 2015 1:38 am Subject: Stack Resize in PIC24 |
Thank response,
I think CCS, should enter in the online Help or the PDF manual, ALL syntax provided.
Or, when you download the 'update, which should automatically release also the' last updated manu ... |
Topic: Stack Resize in PIC24 |
Max
Replies: 16
Views: 27319
|
Forum: General CCS C Discussion Posted: Thu Jun 11, 2015 6:55 am Subject: Re: Stack Size like this |
#stack (256)
This works with V5.046
But.... where did you find the 'information that says to use
#stack (xxx) ?
because in both 'help online and in pdf manual is not the' I found |
Topic: Stack Resize in PIC24 |
Max
Replies: 16
Views: 27319
|
Forum: General CCS C Discussion Posted: Thu Jun 11, 2015 4:34 am Subject: Stack Resize in PIC24 |
Thank,
in the ... \ PICC had a manual in pdf, outdated, I thought that upgrading the compiler was updated also the pdf but it is not so '
He said to use #build(stack=512) but did not work, ... |
Topic: Stack Resize in PIC24 |
Max
Replies: 16
Views: 27319
|
Forum: General CCS C Discussion Posted: Wed Jun 10, 2015 11:51 am Subject: Stack Resize in PIC24 |
Hello,
The compute of stack size by linker it's not enough for
our application, sometime the device go to reset state.
How to set manually or increase size the deep of stack size to
24ep512xxx co ... |
Topic: String in ROM to RAM ? |
Max
Replies: 14
Views: 22496
|
Forum: General CCS C Discussion Posted: Wed Jan 28, 2015 1:06 am Subject: String in ROM to RAM ? |
So does it work?.
What happens with the example as posted (I have amended the rom declaration in it)?. This runs perfectly for me.
l 'example is fine.
But in my full code generates some 'error At ... |
Topic: String in ROM to RAM ? |
Max
Replies: 14
Views: 22496
|
Forum: General CCS C Discussion Posted: Tue Jan 27, 2015 12:07 pm Subject: String in ROM to RAM ? |
I have declared all constants "rom"
I replaced all const with rom |
|