Search results

  1. A

    What should be in standard UART

    as far as I know, standard UART has two register transmitter register and receiver register and two flags transmitter flag and receiver flag. Do uart have shift registers with transmitter register and receiver register?
  2. A

    How do you introduce your technical experience

    .How do you introduce your technical experience I need to prepare a precise introduction for embedded software engineer. I have experience in following uC - PIC, AVR, ARM, Arduino Programming - C, embedded c Tools - Atmel studio, MPLAB, Protocol - Uart, i2C, SPI, TCP/ IP Project - Metal...
  3. A

    W04M RECTIFIER c

    I need a W04M rectifier but its not available in local shop What's diode need to make this rectifier https://datasheetspdf.com/pdf/1216714/MIC/W04M/1 Thanks
  4. A

    What does Cooperative Multitasking mean?

    Definition Cooperative multitasking is a multitasking technique that enables two or more programs to cooperatively share the processing time and resources of the host processor There may be multiple task's to do, but processor only do one task at one time. scheduling algorithm decide when and...
  5. A

    what does compiler code optimization mean

    I do not understand what does compiler code optimization mean, I am struggling to understand meaning of compiler code optimization. can someone explain what is meaning of compiler code optimization?
  6. A

    structure and function to pass the parameter

    I wrote code to store the Id and price of one product. #include <stdio.h> struct Product{ int id; int price; }product1; int main() { /*Assigning id and pric of each product here*/ product1.id = 1; product1.price = 30; /* Displaying product details*/ printf("\n...
  7. A

    Difference between union and structure

    I've been searching on internet and trying to understand how union is different then structure in c language structure is use to hold different type of data type #include <stdio.h> struct student{ char *name; int age; }record; int main() { record.name = "Ceena"...
  8. A

    i++ and ++i operator

    What is the difference between ++i and ++i, both are increment, but i am confused with their operations. any one kindly make me understand how they both works and what is the output, the output is same i have tried. int main() { int x = 10; x++; printf("x is %d", x); return 0...
  9. A

    How to learn pointer in easy steps

    I’m fairly new here so I'm sorry if this question is not suitable on this forum. I found pointer a little difficult to understand in . Pointer in C language is a variable that store the address of another variable. Let’s start with a simple program to define a integer type variable and a...
Top