Search:

Type: Posts; User: Emile Michel

Search: Search took 0.01 seconds.

  1. Sorry. I should have been a bit more specific in...

    Sorry. I should have been a bit more specific in the post itself. It's easy to overlook the title. I also do it when I read it back.
  2. Correct, I hope

    The __attribute__ option should allow me to specify specific attributes of variables. The intent, as you identified it correctly, is to write to the absolute zero address, so when I reboot my...
  3. The main reason I think you don't have a full...

    The main reason I think you don't have a full grasp of your own code is due to a lack of naming conventions and mixing up data types. For instance you have multiple variables called "choice" and you...
  4. When you identify a pointer as NULL, this means...

    When you identify a pointer as NULL, this means there's no instantiation of a struct of the type node that you have just defined associated with it yet. There is no struct of the type node in memory...
  5. Replies
    17
    Views
    12,559

    Officially you're mixing up data types, so '\0'...

    Officially you're mixing up data types, so '\0' is going to get cast to an unsigned int if the compiler allows this code to begin with. Officially a good compiler would have pointed this out.

    I...
  6. Anyone any experience uploading bootloaders using C

    Below is my code without the "printf"-output code to check progress. I checked and it says that it writes the data.

    When I read back the result with a similar program, although it seems to have...
Results 1 to 6 of 6