Recent content by anukalp

  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?

    I am sorry but I have been searching since last two days but I do not understand clearly. so specific question, what is meaning of task is ready to be executed in the context of real time application? Exactly what happen in this state. Does any device stay on or off in this state. ?
  5. A

    What does Cooperative Multitasking mean?

    superb explanation. I have seen in a book and also seen in some web site they only explain about task and task state, that I understand . I do not understand when I think of these three points in the context of devices such as led, motor, sensor display. Therefore, my intention was to...
  6. A

    What does Cooperative Multitasking mean?

    I am a planning to learn RTOS. I do not have good idea on RTOS. I am at beginner level I ma just reading Books, I am trying to understand why need rtos and how does it works. I do not understand two questions right now. I have also searched on google but i don't understand 1. We can achieve...
  7. A

    What does Cooperative Multitasking mean?

    I haven't drawn diagram for specific purpose. I would like to draw complete state diagram but i don't have the complete specification in mind. I'm looking for some useful example on the Internet. Once I make a specification, then I will try to make the state diagram, So that I will know which...
  8. A

    What does Cooperative Multitasking mean?

    Can the processor work like this
  9. A

    What does Cooperative Multitasking mean?

    I have been gone through Wikipeadia as well as other websites. I need help to understand task states in real time system In typical designs, a task has three states: Running (executing on the CPU); Ready (ready to be executed); Blocked (waiting for an event). There may be multiple task...
  10. 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...
  11. 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?
  12. A

    structure and function to pass the parameter

    I have been searching a lot I am struggling to make linked list. I understand the use of pointers, structure .I do not understand how to use them into linked list void showdetaills( ){ } int main(void){ return 0; } I have shown you What I am missing so how to achieve it
  13. A

    structure and function to pass the parameter

    Take a look at this #include <stdio.h> #include <stdlib.h> struct student{ int age; struct node *next; }; struct student *addStudent(struct student *head,int data){ struct student *newStudent; newStudent = malloc(sizeof(struct student)); newStudent->age =...
  14. A

    structure and function to pass the parameter

    we can access the member of structure by declaring structure variable Look at this example : I want to make function that can pass the list element and next node and it can be return the current node #include<stdio.h> struct student { int age; float hight ; struct student...
  15. A

    structure and function to pass the parameter

    struct structureName { struct structureName *nextPointer; // "nextPointer" is member of structure "structureName" }; This define structure whose name is structureName. structure has only one member. we can include a structure within another structure struct structureName *nextPointer...
Top