View previous topic :: View next topic |
Author |
Message |
Gerrit
Joined: 15 Sep 2003 Posts: 58
|
How to use large char buffer |
Posted: Thu Jun 16, 2005 10:37 am |
|
|
I want to use a char buffer of 1000 characters.
How do I declare and how can I use it.
I want to use a 18f6621 and I have V3.225 compiler.
P.S. I have searched the forum but could not find anythink
because of the hit counts for the items "large buffer char array"
Any help in the correct direction is welcome.
Cheers,
Gerrit |
|
|
PCM programmer
Joined: 06 Sep 2003 Posts: 21708
|
|
Posted: Thu Jun 16, 2005 11:15 am |
|
|
Code: | #include <18F6621.h>
#fuses XT, NOWDT, NOPROTECT,PUT,BROWNOUT,NOLVP
#use delay(clock=4000000)
#use rs232(baud=9600, xmit=PIN_C6, rcv=PIN_C7, ERRORS)
char array[1000];
//===================
void main()
{
array[0] = 0x55;
array[500] = 0xAA;
array[999] = 0x33;
while(1);
} |
|
|
|
Gerrit
Joined: 15 Sep 2003 Posts: 58
|
|
Posted: Fri Jun 17, 2005 3:53 am |
|
|
Thanks PCM programmer,
I was still in the idea that only array of 256 positions possible are.
Regards,
Gerrit Faas |
|
|
|