Search Results

5
votes
3answers
520 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

How should I detect unnecessary #include files in a large C++ project?

Start with each include file, and ensure that each include file only includes what is necessary to compile itself. Any include files that are then missing for the C++ files, can be added to the C+ …
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

In what cases do I use malloc vs new?

The new and delete operators can operate on classes and structures, wheres malloc and free only work with blocks of memory that need to be cast. Using new/delete will help to improve your c …
0
votes

checksum calculation

Take a look at my answer to http://stackoverflow.com/questions/149617/how-could-i-guess-a-c …