I am creating a light effects generator using the APA192 led.
The program must address a maximum of 500 leds which, in reality, are 1500 bytes of data.
I must be able to write this data in an array contained in the ram of the micro, a PIC18F47Q43 which has 8K of ram.
This ram is located in different memory banks, so I wanted to know if the compiler can handle this situation.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
I am creating a light effects generator using the APA192 led.
The program must address a maximum of 500 leds which, in reality, are 1500 bytes of data.
I must be able to write this data in an array contained in the ram of the micro, a PIC18F47Q43 which has 8K of ram.
This ram is located in different memory banks, so I wanted to know if the compiler can handle this situation.
The 18F array handler will cope as per the Help.
For the Atmel AVR, LGT 328p or an 18F array sizes are limited to 10,000 elements.
Evan
Thanks