adding a few cases in switch() gives below error "....ANY selector matching ..."
hi there
I have a STM32f030c8t6 which has 64kbyte FLASH. I've compiled my code before and I can see that only 34Kbyte is used.
now I want to develop my code.
I have a timer which interrupts every 4ms. entering timer interrupt, I have a function which is just a switch()/case with 15 cases. when I add 6 more cases I get below error
"...Error: L6406E: No space in execution regions with .ANY selector matching ...."
which is indicting that I do not have enough space in FLASH.
why is that? I mean, the code size was 33Kbytes, how can adding some more cases consume all of FLASH?
