Most hard part of the coding is to optimize it for efficiency and minimizing resource usage. In embedded systems optimization becomes the highest priority because of the limited resources, so the program should be optimized to execute with less memory/storage,… Read More ›
Programming
Embedded C: Preprocessor
First step during the completion of c program is preprocessing, where in the preprocessor modifies the code according based on use input for further compilation process. Preprocessors enables developers to write efficient software’s. Below I have tried to explain how… Read More ›
Embedded C: Data Types
Data represented in memories of micro-controllers will be in the form of ones and zeros (electronic bits @ physical level), in binary format. To make sense of this data, they have to structure together based on the type – numbers… Read More ›
You must be logged in to post a comment.