Search:

Type: Posts; User: ☼Aulos

Search: Search took 0.00 seconds.

  1. A PC is not a microcontroller.

    A PC is not a microcontroller.
  2. Best microcontroller for outputting pictures?

    Hello,

    I hope you are having a good day.

    I need to know what is the best microcontroller on the market which stores and sends pictures (not video) over VGA.

    It would need the typical I/O of...
  3. Replies
    31
    Views
    6,587

    Sorry, actually sound files are stored onto the...

    Sorry, actually sound files are stored onto the microcontroller and then, once the user says something, like "access file one", the microcontroller will play that audio. Instead of just linearly...
  4. Replies
    31
    Views
    6,587

    So it looks like my program never actually goes...

    So it looks like my program never actually goes to the function pointed to by DeltaIndex in the array "FunArray1":





    if((the user said "watermelon"))
    {
    while(DeltaIndex<=8)
    {
  5. Replies
    31
    Views
    6,587

    All, Sorry I wasn't more clear. When I was...

    All,

    Sorry I wasn't more clear. When I was asking questions, I was messing around with the code at the same time.

    Well I tried the look up table method of function pointers and can't seem to...
  6. Replies
    31
    Views
    6,587

    I apologize. My last post was put out before I...

    I apologize. My last post was put out before I saw yours starting with "You appear to be".
  7. Replies
    31
    Views
    6,587

    Are you sure that myFunctionTable...

    Are you sure that


    myFunctionTable FunctionTable[]={{"Hello", &myHello}, {"GoodBye", &myGoodBye}};

    is correct syntax?
  8. Replies
    31
    Views
    6,587

    your code: #include #include...

    your code:



    #include <stdio.h>
    #include <stdlib.h>
    #include <string.h>

    void myHello(void);
    void myGoodBye(void);
  9. Replies
    31
    Views
    6,587

    Does it matter whether the functions that the...

    Does it matter whether the functions that the array is pointing to return or take values? I wouldn't think so, so I made the the functions void-void.

    What does the input to the functions have to...
  10. Replies
    31
    Views
    6,587

    So when I do this: *FunArray1[funIndex]; ...

    So when I do this:


    *FunArray1[funIndex];


    I am passing a number(funIndex) to (*FunArray1[8]) which means that its input must be int.

    so:
  11. Replies
    31
    Views
    6,587

    All I really want to do is go to the function and...

    All I really want to do is go to the function and do something then return nothing.
  12. Replies
    31
    Views
    6,587

    [SIZE=1][SIZE=1] So I looked at the "Array of...

    [SIZE=1][SIZE=1]

    So I looked at the "Array of Function pointers" stuff and it looks really helpful.

    So I made my array:


    int (*FunArray1[8]);
    FunArray1[0]=playPT1;
    FunArray1[1]=playPT2;
  13. Replies
    31
    Views
    6,587

    Can you make an array of commands?

    Hello,

    I hope you are having a good day and thank you for your time.

    Is it possible to make an array of commands such that if I want to go to a function with a certain input, I can use the...
Results 1 to 13 of 13