Search:

Type: Posts; User: robin171

Search: Search took 0.00 seconds.

  1. Replies
    22
    Views
    3,775

    thnx for the replies, I'm working on the example...

    thnx for the replies, I'm working on the example of Salem and it works pretty good. Maybe I need some more help later, for now I can work with this :)
  2. Replies
    22
    Views
    3,775

    thanks!! this works.. tommorow I'll try to work...

    thanks!! this works.. tommorow I'll try to work this out! If I have any questions you'll hear from me again ;)
  3. Replies
    22
    Views
    3,775

    I can't get that working. The problem is the...

    I can't get that working. The problem is the variable fields, so I want to store the data in a array, but I can't get that working. Someone got an idea ??
  4. Replies
    22
    Views
    3,775

    It just won't work :( I tried the examples...

    It just won't work :(

    I tried the examples and i can print the fields, but I want to store them in variables, so i can work with them in my program.

    Yacc looks suitable for my problem, but i...
  5. Replies
    22
    Views
    3,775

    I work with telnet, where 0x0A is the end of line...

    I work with telnet, where 0x0A is the end of line character
  6. Replies
    22
    Views
    3,775

    I started testing and I can't get it working :( ...

    I started testing and I can't get it working :(

    I have made the following function:


    void parse(char *line,char *output)
    {
    char buf[100],ch;
    int i,count=0;
  7. Replies
    22
    Views
    3,775

    how can i return a array of strings ?? :confused:

    how can i return a array of strings ?? :confused:
  8. Thread: timer problem

    by robin171
    Replies
    2
    Views
    1,173

    timer problem

    I have a hardware board with a motion detector. I can read the detector with the function int pirGet(). It returns 0 or 1

    I want to make a function that returns the status of the last 10 seconds. ...
  9. Replies
    22
    Views
    3,775

    Thnx for the replies! I tried the last...

    Thnx for the replies!

    I tried the last example, but i get an error...probably my lack of C knowledge :p

    I want to make a function with a string as input and an array of fields as output.
    ...
  10. Replies
    22
    Views
    3,775

    You have understand me wrong i think. I develop...

    You have understand me wrong i think. I develop the source code with borland C++. I have special plugins for the hardware so i can debug via telnet.

    The biggest problem is the variable fields. I...
  11. Replies
    6
    Views
    1,062

    thank you very much! it works! :D

    thank you very much! it works! :D
  12. Replies
    6
    Views
    1,062

    Ok i get it, i have changed it to: ...

    Ok i get it, i have changed it to:


    sscanf(date,"%2s%2s%2s%2s",&DateTime.dcen,&DateTime.yr,&DateTime.mn,&DateTime.dy);
    sscanf(time,"%2s%2s%2s",&DateTime.hr,&DateTime.min,&DateTime.sec);
    ...
  13. Replies
    6
    Views
    1,062

    ok now i have this: ...

    ok now i have this:


    sscanf(date,"%4s%2s%2s",*DateTime.yr,*DateTime.mn,*DateTime.dy);
    sscanf(time,"%2s%2s%2s",*DateTime.hr,*DateTime.min,*DateTime.sec);

    rtxSetTimeDate(&DateTime);

    I get...
  14. Replies
    6
    Views
    1,062

    struct problem

    I have a hardware board with a 80186 proc. The time on the chip is set bij the function:


    void rtxSetTimeDate(TimeDateStruct far* tds)

    the struct is defined as following:


    typedef struct...
  15. Replies
    22
    Views
    3,775

    Parsing a string

    - A have a hardware board with a 80186 processor.
    - I communicate with the board with telnet.
    - The server is a delphi program
    - I have developed a protocol for the communication so I can...
Results 1 to 15 of 15