PROGMEM support in CubeCell?

I’m trying to store some large arrays of test data in a CubeCell board. I have the PROGMEM directive on the array definition but the arrays are ending up in RAM vs FLASH memory.

Is the PROGMEM directive supported on the CubeCell?

Answering my own question…from https://community.cypress.com/t5/PSoC-Creator-Designer-Software/Placing-an-Array-in-Flash/td-p/74593?start=0&tstart=0

const int sampleCS [] = {

Adding the const took the large array out of RAM into Flash.

1 Like