Search Results

5
votes
3answers
494 views

Simple USB host stack

I am trying to connect to a single USB device using the USB host port on an Atmel processor. I have an embedded system with limited memory and no OS. I want to implement a simple dedicated host t …
2
votes

Windows CD Burning API

We used the following: Store files in the directory returned by GetBurnPath, then write using Burn. GetCDRecordableInfo is used to check when the CD is ready. #include < …
2
votes

C / C++ compiler warnings: do you clean up all your code to remove them or leave them in?

I always enable all warnings, and then set my project to stop building if there are any warnings. If there are warnings, then you need to check each one to ensure that there is no problem. …
0
votes

Easiest way to get file’s contents in C

If the file is text, and you want to get the text line by line, the easiest way is to use fgets(). char buffer[100]; FILE *fp = fopen("filename", "r"); // do not use …
0
votes

Printing pointers in C

You have used: char s[] = "asd"; Here s actually points to the bytes "asd". The address of s, would also point to this location. If you used: …