Posts

Showing posts from January, 2017

ARM7 Training in pune

Image
ARM7 Training in pune   ARM7 is a 32-bit microcontroller architecture. Much of microcontroller architecture taught in engineering is based on 8-bit architectures -- like 8051, Atmel AVR8, Microchip PIC etc The best ARM7 training is given by TECHNOSCRIPTS which is taken fully practically separate kits are also given for practice. TECHNOSCRIPTS is having fully equipped labs for practice. ADDRESS: TechnoScripts Office No 87, Fifth Floor, C Wing, Shrinath Plaza, Dyaneshwar Paduka Chowk, F C Road, Shivaji Nagar, Pune   www. technoscripts.in   info@technoscripts.in Landline: 020-41217199 Mobile : 8605006788

Embedded C Interview Questions

Image
Embedded C Interview Questions (For more details Click here) 1) What is void pointer and what is its use? The void pointer means that it points to a variable that can be of any type. Other pointers points to a specific type of variable while void pointer is a somewhat generic pointer and can be pointed to any data type, be it standard data type(int, char etc) or user define data type (structure, union etc.). We can pass any kind of pointer and reference it as a void pointer. But to deference it, we have to type the void pointer to correct data type. 2) What is ISR? An ISR(Interrupt Service Routine) is an interrupt handler, a callback subroutine which is called when a interrupt is encountered. 3) What is return type of ISR? ISR does not return anything. An ISR returns nothing because there is no caller in the code to read the returned values 4) What is interrupt latency? Interrupt latency is the time required for an ISR respond...