Modifications

Sauter à la navigation Sauter à la recherche
aucun résumé de modification
Ligne 140 : Ligne 140 :  
* '''Avoid dynamic heap allocations''' - These can quickly fragment the limited heap-space.
 
* '''Avoid dynamic heap allocations''' - These can quickly fragment the limited heap-space.
 
* '''Prefer local to global allocation''' - Stack variables only exist while they are being used. If you have variables that only are used in a small section of your code, consider making that code into a function and declaring the variables local to the function.
 
* '''Prefer local to global allocation''' - Stack variables only exist while they are being used. If you have variables that only are used in a small section of your code, consider making that code into a function and declaring the variables local to the function.
 +
 +
{{Arduino-Memoire-TRAILER}}
29 917

modifications

Menu de navigation