I'm writing a new program for an ABOV 8-bit microcontroller and started getting all these errors. I noticed these show up I've added more variables: boolean, uint_8. As soon as I delete one variable, the error goes away.
Are these errors due to a possible size limit in the microcontroller or specific registers?
Screenshot below.
Please look at the first linker error/warning. I'm pretty sure that you did not list the beginning of all these linker errors/warnings. It seems that your application runs out of RAM. Please check your device how much data/idata/xdata RAM it supports and distribute your variables accordingly by using memory specifier when you define variables.
Thank you, Hans! This was the problem and we moved onto a microcontroller with more RAM.