User selwyn - Stack Overflowmost recent 30 from stackoverflow.com2009-11-28T19:29:11Zhttp://stackoverflow.com/feeds/user/16314http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/847450/checksum-calculation/1722291#17222910Answer by selwyn for checksum calculationselwyn2009-11-12T13:47:09Z2009-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-cache2Flush disk write cacheselwyn2008-10-06T08:12:48Z2009-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-stack5Simple USB host stackselwyn2009-02-17T08:30:56Z2009-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-system2Sqlite on an embedded systemselwyn2008-10-07T12:45:40Z2009-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#1977680Answer by selwyn for Printing pointers in Cselwyn2008-10-13T14:28:28Z2008-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 &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 = &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#1971420Answer by selwyn for Definition of software quality?selwyn2008-10-13T09:51:58Z2008-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#1849070Answer by selwyn for Easiest way to get file's contents in Cselwyn2008-10-08T21:02:07Z2008-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#1847980Answer by selwyn for In what cases do I use malloc vs new?selwyn2008-10-08T20:42:26Z2008-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#1847402Answer by selwyn for C / C++ compiler warnings: do you clean up all your code to remove them or leave them in?selwyn2008-10-08T20:28:33Z2008-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#1847000Answer by selwyn for What is the difference between Obfuscation, Hashing, and Encryption?selwyn2008-10-08T20:21:33Z2008-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#1815000Answer by selwyn for Is there a better way to find midnight tomorrow?selwyn2008-10-08T06:01:24Z2008-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#1586935Answer by selwyn for How could I guess a checksum algorithm?selwyn2008-10-01T17:14:13Z2008-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#1582201Answer by selwyn for How do you measure the time a function takes to execute?selwyn2008-10-01T15:28:38Z2008-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-number3CPU serial numberselwyn2008-09-18T06:15:38Z2008-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#852962Answer by selwyn for How should I detect unnecessary #include files in a large C++ project?selwyn2008-09-17T16:55:16Z2008-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#851662Answer by selwyn for Windows CD Burning APIselwyn2008-09-17T16:42:23Z2008-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 <stdio.h>
#include <imapi.h>
#include <windows.h>
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*)&pICDBurn))) {
BOOL flag;
if (pICDBurn->HasRecordableDrive(&flag) == S_OK) {
if (SHGetSpecialFolderPath(0, path, CSIDL_CDBURN_AREA, 0)) {
strcat(path, "\\");
}
else {
ret = 1;
}
}
else {
ret = 2;
}
pICDBurn->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*)&pICDBurn))) {
BOOL flag;
WCHAR drive[5];
if (pICDBurn->GetRecorderDriveLetter(drive, 4) == S_OK) {
sprintf(path, "%S", drive);
}
else {
ret = 1;
}
pICDBurn->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*)&pICDBurn))) {
if (pICDBurn->Burn(NULL) != S_OK) {
ret = 1;
}
pICDBurn->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**)&idm);
idm->Open();
idm->EnumDiscRecorders(&pEnumDiscRecorders);
pEnumDiscRecorders->Next(1, &idr, &cnt);
pEnumDiscRecorders->Release();
idr->OpenExclusive();
idr->GetRecorderType(&type);
idr->QueryMediaType(&mtype, &mflags);
idr->QueryMediaInfo(&mi.nSessions, &mi.nLastTrack, &mi.nStartAddress, &mi.nNextWritable, &mi.nFreeBlocks);
idr->Release();
idm->Close();
idm->Release();
Result = true;
}
catch (...) {
Result = false;
}
if (Result == true) {
Result = false;
if (mtype == 0) {
// No Media inserted
Result = false;
}
else {
if ((mflags & 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#849300Answer by selwyn for What's Your Motto As A Developer/Programmer?selwyn2008-09-17T16:15:48Z2008-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-questionComment by selwyn on c string tokenization questionselwyn2009-09-25T15:11:29Z2009-09-25T15:11:29ZIt is good practice to use the same variable name for the malloc and the free. In this case, use "start" for the malloc, and then assign "str" to the value of "start". http://stackoverflow.com/questions/197757/printing-pointers-in-c/197768#197768Comment by selwyn on Printing pointers in Cselwyn2008-10-13T15:00:32Z2008-10-13T15:00:32ZOops - I way busy typing when it posted the message.http://stackoverflow.com/questions/178264/sqlite-on-an-embedded-system/178353#178353Comment by selwyn on Sqlite on an embedded systemselwyn2008-10-07T13:18:06Z2008-10-07T13:18:06ZI was hoping to use the sqlite to speed up my searches.http://stackoverflow.com/questions/173560/flush-disk-write-cache/173600#173600Comment by selwyn on Flush disk write cacheselwyn2008-10-06T11:24:08Z2008-10-06T11:24:08ZIt 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-parametersComment by selwyn on Use of 'const' for function parametersselwyn2008-09-25T20:31:01Z2008-09-25T20:31:01ZI 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.