Search:

Type: Posts; User: seemaxie

Page 1 of 2 1 2

Search: Search took 0.01 seconds.

  1. Replies
    1
    Views
    835

    Need you insights on the following Task

    I would like to know the Tools and Approach to be used to complete the following task.

    Task
    Build a Windows Application which connects to a webpage asynchronously and fetches 10 lines of...
  2. Replies
    2
    Views
    1,760

    @shurik thanks a ton . That really works in my...

    @shurik thanks a ton . That really works in my case. It actually works this way



    int i;
    int task1done = 0;
    int task2done = 0;
    /* i dont have to use while(1) as controller takes care of...
  3. Replies
    2
    Views
    1,760

    brainstorming with a scheduler.

    The controller which i am using executes code in terms of tasks (Round- robin fashion). It does not got any main function. for example:


    int i ; // getting the i value over serial interface
    ...
  4. I m really happy to come out of ignorance.. Glad...

    I m really happy to come out of ignorance.. Glad to meet you n thanks again for such a wonderful explanation . I will mark this thread for my future reference too . I do not know whether i can find...
  5. Thank you for your time .. :) It seems to be...

    Thank you for your time .. :) It seems to be optimized to the core ..:) Great touch..
    q1) The below is not needed anymore..??


    #define PARITY_ID (1U << PARITY_ID_SHIFT)
    #define ...
  6. Can someone help me to optimize this code.. With...

    Can someone help me to optimize this code.. With the above inputs i have come up with this... I am setting a partiy for every 8 bits in P_parity but for 16 bits variables i have broken them twice n ...
  7. Replies
    4
    Views
    900

    @std i think array should be size 6 . No place...

    @std i think array should be size 6 . No place for '\0'
  8. Replies
    4
    Views
    900

    b = a ;

    b = a ;
  9. Thanks a ton Guys... n Spl thanks to Nominal for...

    Thanks a ton Guys... n Spl thanks to Nominal for such a clean explanation. :)Your inputs were really helpful ... :)
  10. Replies
    2
    Views
    3,396

    what is happening here ..?? you got to loop size...

    what is happening here ..?? you got to loop size times with scanf if you want user to fill the array


    edit : on line 8 u declared array to random size as variable i is not initialized
  11. Help with Bitwise fragmentation in a structure??

    Hello Folks,

    I have this structure


    typedef struct {
    char transLen;
    unsigned short transType; // 8bit
    unsigned short Pparity;
    } Buf;
  12. Hi salem, Thank you for the response.... can you...

    Hi salem, Thank you for the response.... can you please shed some more light.. still i got few questions....

    Q1)
    if this the case


    typedef struct {
    char transLen;
    int transType;
    ...
  13. Replies
    2
    Views
    936

    Looks like in flipstring while(i != -1) ...

    Looks like in flipstring


    while(i != -1)

    is always true....

    N this declaration is i = nextword(NULL); is keeping it true.....
  14. explanation needed on assigning a struct member to an another structure ...

    Guys,



    (slaveIdent*) (SPIBuff.data);

    Could not able to figure out how i am able to assign a struct member to an another structure in the main function... can someone explain the above...
  15. Thread: pointers

    by seemaxie
    Replies
    5
    Views
    1,096

    @ledow looks like you got to interchange the...

    @ledow looks like you got to interchange the positions of str2 and str1 in this paragraph
  16. Replies
    11
    Views
    1,211

    Thank you laserlight ..!! Enlightened ..!! :)

    Thank you laserlight ..!! Enlightened ..!! :)
  17. Replies
    11
    Views
    1,211

    I have made few changes to program and could able...

    I have made few changes to program and could able to print the values in a struct . Someone please help me out..


    #include<stdio.h>
    #include<assert.h>
    #include<stdlib.h>
    #include<string.h>
    ...
  18. Replies
    11
    Views
    1,211

    Thanks all , special thanks to subsonics .. i...

    Thanks all , special thanks to subsonics .. i lacked the understanding of "returning a pointer to an another pointer" for example


    int m = 30,*j,*g;
    m= &j;
    g = m; (i have no idea that doing...
  19. Replies
    11
    Views
    1,211

    Im breaking my head to get this concept :( but if...

    Im breaking my head to get this concept :( but if i want 1000 struct person i would do this
    struct person profile[1000];
  20. Replies
    11
    Views
    1,211

    Hi Subsonics, I dont understand how the function...

    Hi Subsonics,
    I dont understand how the function Person_create creates a new struct person with the arguments passed to the function and why malloc is used to allocate memory .... And i forgot to...
  21. Replies
    11
    Views
    1,211

    Can someone explain this..??

    Could not able to understand in line 13 that how a pointer function is assigned to a struct . And on line 15 *who is allocated with some memory space . normally a pointer is assigned to an address...
  22. Thread: while(1)

    by seemaxie
    Replies
    14
    Views
    2,577

    PD.PDR.BIT.P7DT =0;/* Buzzer */ place this above...

    PD.PDR.BIT.P7DT =0;/* Buzzer */
    place this above while n leave while empty...
  23. Replies
    3
    Views
    2,223

    Here you are inputting into 4*5 array ...

    Here you are inputting into 4*5 array


    amp[column][row] = Y * sqrt((1 + ((2 * zeta * r) * (2 * zeta * r))) / (((1 - (r * r)) * (1 - (r * r)) + (( 2 * zeta * r) * (2 * zeta * r)))));

    Here you...
  24. While i was finding a solutions i had these two...

    While i was finding a solutions i had these two questions ... so i found it is appropriate to ask it right away .. i would soon leave the control when i get the answers ..
    How do i achieve this..??
  25. The following code executes as many times as CAPS...

    The following code executes as many times as CAPS are entered . how to restrict that without using BREAK;.. And also user should be asked to re-enter is there no CAPS entered .. how these can be...
Results 1 to 25 of 36
Page 1 of 2 1 2