щербатый писал(а):But there are questions that interest me. Do not you know. The size of the projects in the 5th and 8th versions of flowcode than what is limited? How large can the project be in version 8 of flowcode? What is it limited to? By the size of the generated binary code, the number of macros, the number of variables? Something other?.
The size of a project is limited mainly by the size of the ROM and RAM of the microcontroller used.
The on-chip ROM memory (Read Only Memory) on a microcontroller is like a microcontroller’s hard drive. It has two partitions. One partition is reserved for the storage of the program code while the other partition is reserved for permanent storage of data that is used by the chip during normal program execution.
The data RAM (Random Access Memory) is the data space that is used for temporarily storing constant and variable values that are used by the microcontroller during normal program execution. The amount of physical RAM space on a given microcontroller varies from one microcontroller to the next.
Both the size of the code and the number of variables, depending on their type, are limited depending on the microcontroller chosen in the project.
However, if the code is too large or the number of variables is exceeded, the compiler generates an error.