User selwyn - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T19:29:11Z http://stackoverflow.com/feeds/user/16314 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/847450/checksum-calculation/1722291#1722291 0 Answer by selwyn for checksum calculation selwyn 2009-11-12T13:47:09Z 2009-11-12T13:47:09Z <p>Take a look at my answer to <a href="http://stackoverflow.com/questions/149617/how-could-i-guess-a-checksum-algorithm/158693#158693">http://stackoverflow.com/questions/149617/how-could-i-guess-a-checksum-algorithm/158693#158693</a> </p> http://stackoverflow.com/questions/173560/flush-disk-write-cache 2 Flush disk write cache selwyn 2008-10-06T08:12:48Z 2009-05-06T15:37:33Z <p>When the policy for a disk in Windows XP and Vista is set to enable write caching on the hard disk, is there a way to flush a file that has just been written, and ensure that it has been committed to disk?</p> <p>I want to do this programmatically in C++.</p> <p>Closing the file does perform a flush at the application level, but not at the operating system level. If the power is removed from the PC after closing the file, but before the operating system has flushed the disk write cache, the file is lost, even though it was closed.</p> http://stackoverflow.com/questions/555923/simple-usb-host-stack 5 Simple USB host stack selwyn 2009-02-17T08:30:56Z 2009-02-22T16:27:34Z <p>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 to interface to a single USB slave device.</p> <p>Can anyone guide me to a simple USB host implementation?</p> <p>The processor is the Atmel AT91SAM9261S.</p> http://stackoverflow.com/questions/178264/sqlite-on-an-embedded-system 2 Sqlite on an embedded system selwyn 2008-10-07T12:45:40Z 2009-02-14T01:00:40Z <p>I have a database file that is generated on a PC using Sqlite. This file is then transferred to an ARM7 based embedded system without an operating system. The embedded system must access this database, but does not need to update it.</p> <p>I have been trying to get sqlite3 small enough for the embedded system, but so far I cannot get the application size under 256 Kbytes (my limit).</p> <p>Has anyone been able to get sqlite3 down to this size? Is there other software that I can use to read this database?</p> <p>EDIT: I am trying to access the database using C. This would be done using the sqlite3_exec() function.</p> <p>There are two tables. One table has an ID and text, the second an ID, link to ID of first table, text, and status value. The only access required is by ID or partial text on the first table, and by ID on the second table.</p> <p>Perhaps there is some standalone code that can be used to access the database?</p> http://stackoverflow.com/questions/197757/printing-pointers-in-c/197768#197768 0 Answer by selwyn for Printing pointers in C selwyn 2008-10-13T14:28:28Z 2008-10-13T14:49:43Z <p>You have used:</p> <pre><code>char s[] = "asd"; </code></pre> <p>Here s actually points to the bytes "asd". The address of s, would also point to this location.</p> <p>If you used:</p> <pre><code>char *s = "asd"; </code></pre> <p>the value of s and &amp;s would be different, as s would actually be a pointer to the bytes "asd".</p> <p>You used:</p> <pre><code>char s[] = "asd"; char **p = &amp;s; </code></pre> <p>Here s points to the bytes "asd". p is a pointer to a pointer to characters, and has been set to a the address of characters. In other words you have too many indirections in p. If you used char *s = "asd", you could use this additional indirection.</p> http://stackoverflow.com/questions/197042/definition-of-software-quality/197142#197142 0 Answer by selwyn for Definition of software quality? selwyn 2008-10-13T09:51:58Z 2008-10-13T09:51:58Z <p>My favourite quote regarding quality is:</p> <p><em>Quality is never an accident; It is always the result of high intention, sincere effect, intelligent direction and skillful execution; it represents the wise choice of many alternatives.</em></p> http://stackoverflow.com/questions/174531/easiest-way-to-get-files-contents-in-c/184907#184907 0 Answer by selwyn for Easiest way to get file's contents in C selwyn 2008-10-08T21:02:07Z 2008-10-08T21:02:07Z <p>If the file is text, and you want to get the text line by line, the easiest way is to use fgets().</p> <pre><code>char buffer[100]; FILE *fp = fopen("filename", "r"); // do not use "rb" while (fgets(buffer, sizeof(buffer), fp)) { ... do something } fclose(fp); </code></pre> http://stackoverflow.com/questions/184537/in-what-cases-do-i-use-malloc-vs-new/184798#184798 0 Answer by selwyn for In what cases do I use malloc vs new? selwyn 2008-10-08T20:42:26Z 2008-10-08T20:42:26Z <p>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.</p> <p>Using new/delete will help to improve your code as you will not need to cast allocated memory to the required data structure.</p> http://stackoverflow.com/questions/183788/c-c-compiler-warnings-do-you-clean-up-all-your-code-to-remove-them-or-leave/184740#184740 2 Answer by selwyn for C / C++ compiler warnings: do you clean up all your code to remove them or leave them in? selwyn 2008-10-08T20:28:33Z 2008-10-08T20:28:33Z <p>I always enable all warnings, and then set my project to stop building if there are any warnings.</p> <p>If there are warnings, then you need to check each one to ensure that there is no problem. Doing this over and over is a waste of time. Not doing this implies will lead to errors creeping into your code.</p> <p>There are ways to remove a warning (e.g. #pragma argsused).</p> <p>Let the compiler do the work.</p> http://stackoverflow.com/questions/184328/what-is-the-difference-between-obfuscation-hashing-and-encryption/184700#184700 0 Answer by selwyn for What is the difference between Obfuscation, Hashing, and Encryption? selwyn 2008-10-08T20:21:33Z 2008-10-08T20:21:33Z <p>A brief answer:</p> <p>Hashing - creating a check field on some data (to detect when data is modified).</p> <p>Obfuscation - modify your data/code to confuse anyone else (no real protection).</p> <p>Encryption - using a key to hide information so that only those with the key can understand it.</p> http://stackoverflow.com/questions/181459/is-there-a-better-way-to-find-midnight-tomorrow/181500#181500 0 Answer by selwyn for Is there a better way to find midnight tomorrow? selwyn 2008-10-08T06:01:24Z 2008-10-08T06:01:24Z <p>Convert your current date and time to a Unix date (seconds since 1970) or DOS style (since 1980), then add 24 hours and convert it back. Then reset the hours, minutes and seconds to zero to get to midnight.</p> http://stackoverflow.com/questions/149617/how-could-i-guess-a-checksum-algorithm/158693#158693 5 Answer by selwyn for How could I guess a checksum algorithm? selwyn 2008-10-01T17:14:13Z 2008-10-02T14:40:37Z <p>There are a number of variables to consider for a CRC:</p> <pre><code>Polynomial No of bits (16 or 32) Normal (LSB first) or Reverse (MSB first) Initial value How the final value is manipulated (e.g. subtracted from 0xffff), or is a constant value </code></pre> <p>Typical CRCs:</p> <pre><code>LRC: Polynomial=0x81; 8 bits; Normal; Initial=0; Final=as calculated CRC16: Polynomial=0xa001; 16 bits; Normal; Initial=0; Final=as calculated CCITT: Polynomial=0x1021; 16 bits; reverse; Initial=0xffff; Final=0x1d0f Xmodem: Polynomial=0x1021; 16 bits; reverse; Initial=0; Final=0x1d0f CRC32: Polynomial=0xebd88320; 32 bits; Normal; Initial=0xffffffff; Final=inverted value ZIP32: Polynomial=0x04c11db7; 32 bits; Normal; Initial=0xffffffff; Final=as calculated </code></pre> <p>The first thing to do is to get some samples by changing say the last byte. This will assist you to figure out the number of bytes in the CRC. </p> <p>Is this a "homemade" algorithm. In this case it may take some time. Otherwise try the standard algorithms.</p> <p>Try changing either the msb or the lsb of the last byte, and see how this changes the CRC. This will give an indication of the direction.</p> <p>To make it more difficult, there are implementations manipulate the CRC so that it will not affect the communications medium (protocol).</p> <p>From your comment about RFID, it implies that the CRC is communications related. Usually CRC16 is used for communicated, though CCITT is also used on some systems.</p> <p>On the other hand, if this is UHF RFID tagging, then there are a few CRC schemes - a 5 bit one and some 16 bit ones. These are documented in the ISO standards and the IPX data sheets.</p> <pre><code>IPX: Polynomial=0x8005; 16 bits; Reverse; Initial=0xffff; Final=as calculated ISO 18000-6B: Polynomial=0x1021; 16 bits; Reverse; Initial=0xffff; Final=as calculated ISO 18000-6C: Polynomial=0x1021; 16 bits; Reverse; Initial=0xffff; Final=as calculated Data must be padded with zeroes to make a multiple of 8 bits ISO CRC5: Polynomial=custom; 5 bits; Reverse; Initial=0x9; Final=shifted left by 3 bits Data must be padded with zeroes to make a multiple of 8 bits EPC class 1: Polynomial=custom 0x1021; 16 bits; Reverse; Initial=0xffff; Final=post processing of 16 zero bits </code></pre> <p><strong>Here is your answer!!!!</strong></p> <p><strong>Having worked through your logs, the CRC is the CCITT one. The first byte 0xd6 is excluded from the CRC.</strong></p> http://stackoverflow.com/questions/68907/how-do-you-measure-the-time-a-function-takes-to-execute/158220#158220 1 Answer by selwyn for How do you measure the time a function takes to execute? selwyn 2008-10-01T15:28:38Z 2008-10-01T15:28:38Z <p>I always implement an interrupt driven ticker routine. This then updates a counter that counts the number of milliseconds since start up. This counter is then accessed with a GetTickCount() function. </p> <p>Example:</p> <pre><code>#define TICK_INTERVAL 1 // milliseconds between ticker interrupts static unsigned long tickCounter; interrupt ticker (void) { tickCounter += TICK_INTERVAL; ... } unsigned in GetTickCount(void) { return tickCounter; } </code></pre> <p>In your code you would time the code as follows:</p> <pre><code>int function(void) { unsigned long time = GetTickCount(); do something ... printf("Time is %ld", GetTickCount() - ticks); } </code></pre> http://stackoverflow.com/questions/90462/cpu-serial-number 3 CPU serial number selwyn 2008-09-18T06:15:38Z 2008-09-18T07:17:56Z <p>How do I obtain the serial number of the CPU in a PC?</p> http://stackoverflow.com/questions/74326/how-should-i-detect-unnecessary-include-files-in-a-large-c-project/85296#85296 2 Answer by selwyn for How should I detect unnecessary #include files in a large C++ project? selwyn 2008-09-17T16:55:16Z 2008-09-17T16:55:16Z <p>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++ files themselves.</p> <p>For each include and source file, comment out each include file one at a time and see if it compiles.</p> <p>It is also a good idea to sort the include files alphabetically, and where this is not possible, add a comment.</p> http://stackoverflow.com/questions/82993/windows-cd-burning-api/85166#85166 2 Answer by selwyn for Windows CD Burning API selwyn 2008-09-17T16:42:23Z 2008-09-17T16:42:23Z <p>We used the following: </p> <p>Store files in the directory returned by GetBurnPath, then write using Burn. GetCDRecordableInfo is used to check when the CD is ready.</p> <pre><code>#include &lt;stdio.h&gt; #include &lt;imapi.h&gt; #include &lt;windows.h&gt; struct MEDIAINFO { BYTE nSessions; BYTE nLastTrack; ULONG nStartAddress; ULONG nNextWritable; ULONG nFreeBlocks; }; //============================================================================== // Description: CD burning on Windows XP //============================================================================== #define CSIDL_CDBURN_AREA 0x003b SHSTDAPI_(BOOL) SHGetSpecialFolderPathA(HWND hwnd, LPSTR pszPath, int csidl, BOOL fCreate); SHSTDAPI_(BOOL) SHGetSpecialFolderPathW(HWND hwnd, LPWSTR pszPath, int csidl, BOOL fCreate); #ifdef UNICODE #define SHGetSpecialFolderPath SHGetSpecialFolderPathW #else #define SHGetSpecialFolderPath SHGetSpecialFolderPathA #endif //============================================================================== // Interface IDiscMaster const IID IID_IDiscMaster = {0x520CCA62,0x51A5,0x11D3,{0x91,0x44,0x00,0x10,0x4B,0xA1,0x1C,0x5E}}; const CLSID CLSID_MSDiscMasterObj = {0x520CCA63,0x51A5,0x11D3,{0x91,0x44,0x00,0x10,0x4B,0xA1,0x1C,0x5E}}; typedef interface ICDBurn ICDBurn; // Interface ICDBurn const IID IID_ICDBurn = {0x3d73a659,0xe5d0,0x4d42,{0xaf,0xc0,0x51,0x21,0xba,0x42,0x5c,0x8d}}; const CLSID CLSID_CDBurn = {0xfbeb8a05,0xbeee,0x4442,{0x80,0x4e,0x40,0x9d,0x6c,0x45,0x15,0xe9}}; MIDL_INTERFACE("3d73a659-e5d0-4d42-afc0-5121ba425c8d") ICDBurn : public IUnknown { public: virtual HRESULT STDMETHODCALLTYPE GetRecorderDriveLetter( /* [size_is][out] */ LPWSTR pszDrive, /* [in] */ UINT cch) = 0; virtual HRESULT STDMETHODCALLTYPE Burn( /* [in] */ HWND hwnd) = 0; virtual HRESULT STDMETHODCALLTYPE HasRecordableDrive( /* [out] */ BOOL *pfHasRecorder) = 0; }; //============================================================================== // Description: Get burn pathname // Parameters: pathname - must be at least MAX_PATH in size // Returns: Non-zero for an error // Notes: CoInitialize(0) must be called once in application //============================================================================== int GetBurnPath(char *path) { ICDBurn* pICDBurn; int ret = 0; if (SUCCEEDED(CoCreateInstance(CLSID_CDBurn, NULL,CLSCTX_INPROC_SERVER,IID_ICDBurn,(LPVOID*)&amp;pICDBurn))) { BOOL flag; if (pICDBurn-&gt;HasRecordableDrive(&amp;flag) == S_OK) { if (SHGetSpecialFolderPath(0, path, CSIDL_CDBURN_AREA, 0)) { strcat(path, "\\"); } else { ret = 1; } } else { ret = 2; } pICDBurn-&gt;Release(); } else { ret = 3; } return ret; } //============================================================================== // Description: Get CD pathname // Parameters: pathname - must be at least 5 bytes in size // Returns: Non-zero for an error // Notes: CoInitialize(0) must be called once in application //============================================================================== int GetCDPath(char *path) { ICDBurn* pICDBurn; int ret = 0; if (SUCCEEDED(CoCreateInstance(CLSID_CDBurn, NULL,CLSCTX_INPROC_SERVER,IID_ICDBurn,(LPVOID*)&amp;pICDBurn))) { BOOL flag; WCHAR drive[5]; if (pICDBurn-&gt;GetRecorderDriveLetter(drive, 4) == S_OK) { sprintf(path, "%S", drive); } else { ret = 1; } pICDBurn-&gt;Release(); } else { ret = 3; } return ret; } //============================================================================== // Description: Burn CD // Parameters: None // Returns: Non-zero for an error // Notes: CoInitialize(0) must be called once in application //============================================================================== int Burn(void) { ICDBurn* pICDBurn; int ret = 0; if (SUCCEEDED(CoCreateInstance(CLSID_CDBurn, NULL,CLSCTX_INPROC_SERVER,IID_ICDBurn,(LPVOID*)&amp;pICDBurn))) { if (pICDBurn-&gt;Burn(NULL) != S_OK) { ret = 1; } pICDBurn-&gt;Release(); } else { ret = 2; } return ret; } //============================================================================== bool GetCDRecordableInfo(long *FreeSpaceSize) { bool Result = false; IDiscMaster *idm = NULL; IDiscRecorder *idr = NULL; IEnumDiscRecorders *pEnumDiscRecorders = NULL; ULONG cnt; long type; long mtype; long mflags; MEDIAINFO mi; try { CoCreateInstance(CLSID_MSDiscMasterObj, 0, CLSCTX_ALL, IID_IDiscMaster, (void**)&amp;idm); idm-&gt;Open(); idm-&gt;EnumDiscRecorders(&amp;pEnumDiscRecorders); pEnumDiscRecorders-&gt;Next(1, &amp;idr, &amp;cnt); pEnumDiscRecorders-&gt;Release(); idr-&gt;OpenExclusive(); idr-&gt;GetRecorderType(&amp;type); idr-&gt;QueryMediaType(&amp;mtype, &amp;mflags); idr-&gt;QueryMediaInfo(&amp;mi.nSessions, &amp;mi.nLastTrack, &amp;mi.nStartAddress, &amp;mi.nNextWritable, &amp;mi.nFreeBlocks); idr-&gt;Release(); idm-&gt;Close(); idm-&gt;Release(); Result = true; } catch (...) { Result = false; } if (Result == true) { Result = false; if (mtype == 0) { // No Media inserted Result = false; } else { if ((mflags &amp; 0x04) == 0x04) { // Writable Media Result = true; } else { Result = false; } if (Result == true) { *FreeSpaceSize = (mi.nFreeBlocks * 2048); } else { *FreeSpaceSize = 0; } } } return Result; } </code></pre> http://stackoverflow.com/questions/81677/whats-your-motto-as-a-developer-programmer/84930#84930 0 Answer by selwyn for What's Your Motto As A Developer/Programmer? selwyn 2008-09-17T16:15:48Z 2008-09-17T16:15:48Z <p>Write your code as though it is to be submitted for marking.</p> http://stackoverflow.com/questions/1477643/c-string-tokenization-question Comment by selwyn on c string tokenization question selwyn 2009-09-25T15:11:29Z 2009-09-25T15:11:29Z It is good practice to use the same variable name for the malloc and the free. In this case, use &quot;start&quot; for the malloc, and then assign &quot;str&quot; to the value of &quot;start&quot;. http://stackoverflow.com/questions/197757/printing-pointers-in-c/197768#197768 Comment by selwyn on Printing pointers in C selwyn 2008-10-13T15:00:32Z 2008-10-13T15:00:32Z Oops - I way busy typing when it posted the message. http://stackoverflow.com/questions/178264/sqlite-on-an-embedded-system/178353#178353 Comment by selwyn on Sqlite on an embedded system selwyn 2008-10-07T13:18:06Z 2008-10-07T13:18:06Z I was hoping to use the sqlite to speed up my searches. http://stackoverflow.com/questions/173560/flush-disk-write-cache/173600#173600 Comment by selwyn on Flush disk write cache selwyn 2008-10-06T11:24:08Z 2008-10-06T11:24:08Z It appears that this would work. Unfortunately, the application must be able to run without administrative rights. http://stackoverflow.com/questions/117293/use-of-const-for-function-parameters Comment by selwyn on Use of 'const' for function parameters selwyn 2008-09-25T20:31:01Z 2008-09-25T20:31:01Z I disagree. The .h file must have the const definitions as well. If not, then if const parameters are passed to the function, the compiler will generate an error, as the prototype in the .h file does not have the const definitions.