This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

Fatal Errors: L16, L105, L107, L118, L120 for ABOV A96L322

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.

Parents
  • 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.

Reply
  • 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.

Children