User JudgeDread - Stack Overflowmost recent 30 from stackoverflow.com2009-12-02T15:03:26Zhttp://stackoverflow.com/feeds/user/3685http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1716663/c-memcpy-a-function/1743386#17433860Answer by JudgeDread for C memcpy() a functionJudgeDread2009-11-16T16:47:51Z2009-11-16T16:47:51Z<p>I have done this on a Nintendo GBA where I've copied some low level render functions from flash (16 bit access slowish memory) to the high speed workspace ram (32 bit access, at least twice as fast). This was done by taking the address of the function immdiately after the function I wanted to copy, size = (int) (NextFuncPtr - SourceFuncPtr). This did work well but obviously cant be garunteed on all platforms (does not work on Windows for sure).</p>
http://stackoverflow.com/questions/426821/what-type-of-random-number-generator-is-used-in-the-gaming-industry/1238869#12388690Answer by JudgeDread for What Type of Random Number Generator is Used in the Gaming Industry?JudgeDread2009-08-06T13:24:31Z2009-08-06T13:24:31Z<p>Most poker sites use hardware random number generators. They will also modify the output to remove any scaling bias and often use 'pots' of numbers which can be 'stirred' using entropic events (user activity, serer i/o events etc). Quite often the resultant numbers just index pre-generated decks (starting off as a sorted list of cards).</p>
http://stackoverflow.com/questions/154245/editing-a-text-buffer2Editing a text buffer...JudgeDread2008-09-30T18:06:54Z2009-07-20T20:28:22Z
<p>Ok, this is a bit of a cheeky question. I want to build a simple text editor (using my own text mode screen handling). I just want a good example of data structures that can be used to represent the text buffer, and some simple examples of char/text insertion/deletion. I can handle all the rest of the code myself (file i/o, console i/o etc). A link to a nice simple editor source would be great (C or C++).</p>
http://stackoverflow.com/questions/305077/can-i-set-visual-stdio-2005-to-ignore-assertions-in-a-specific-region-of-code-whi3Can I set Visual Stdio 2005 to ignore assertions in a specific region of code while debugging....JudgeDread2008-11-20T12:03:49Z2009-07-12T17:55:11Z
<p>Aaargh!</p>
<p>OK, here's the scenario. I'm debugging my own app (C/C++) which is using some library developed by another team in the company. An assertion fails when my code generates some edge case. Its a pain because the assertion is not formulated correctly so the library function is working OK but I get all these interruptions where I just have to continue (lots as its in a loop) so I can get to the stuff I'm actually interested in. I have to use the debug version of the library when debugging for other reasons. The other team wont fix this till next release (hey, it works on our machine).</p>
<p>Can I tell the debugger to ignore the breakpoints asserted by this section of code (i.e. can it auto-continue for me).</p>
http://stackoverflow.com/questions/949937/win32-memory-issue-differences-between-debug-release3WIN32 memory issue (differences between debug/release).JudgeDread2009-06-04T11:24:10Z2009-06-04T15:17:46Z
<p>I'm currently working on a legacy app (win32, Visual C++ 2005) that allocates memory using LocalAlloc (in a supplied library I can't change). The app keeps very large state in fixed memory (created at the start with multiple calls to LocalAlloc( LPTR, size)). I notice that in release mode I run out of memory at about 1.8gb but in debug it happily goes on to over 3.8gb. I'm running XP64 with the /3gb switch. I need to increase the memory used in the app and I'm hitting the memory limit in release (debug works ok). Any ideas?</p>
http://stackoverflow.com/questions/890414/how-to-send-sound-to-a-speaker/891811#8918110Answer by JudgeDread for How to send sound to a speakerJudgeDread2009-05-21T07:50:42Z2009-05-21T07:50:42Z<p>You dont have enough space on the ATMega128 to do anything too fancy. The easiest way to connect the speaker (small 2" or less) is via a resister. Check the current sinking capacity of the output and calculate R accordingly.</p>
<pre><code>---------------------- +V
|
\
/ R
\
/ ----------
| |
| ------ |
----| |-----| uC
/ \ |
-------- |
Speaker ---------
</code></pre>
<p>As regards producing tones basic switching of the output will produce basic stylaphone sounding crapolla. You can use pulse width modulation to produce approximations of any analog sound (too complex to go into here and the AtMega probably wont have enough puff or storage). This was the method used to make audio drivers for PC's with no sound card (only the built in speaker) in the good ol' days...</p>
http://stackoverflow.com/questions/862934/count-the-network-interfaces-with-wsaioctl-function-win32-api0Count the network interfaces with WSAIoctl function (WIN32 API)JudgeDread2009-05-14T12:00:53Z2009-05-14T14:44:31Z
<p>I'm trying to list available interfaces using the WSAIoctl function. I have to pass in a buffer to hold the complete list. I want to get a count of the interfaces before I allocate memory to hold the interface details but if I pass in a NULL pointer the call just fails (I dont get a valid count returned). Any way to get this count befor I have to allocate memory?</p>
<p>Background is that I am starting a load of processes/threads on on Windows machine which all connect to a single server. I want the server to see these individual connections as coming from different IP addresses and I have added a load of aliases to the test machine to allow for this (lots). The WSAIoct does correctly find all the ones I added.</p>
<p>Cheers...</p>
http://stackoverflow.com/questions/764907/binary-format-to-pass-tabular-data/824621#8246210Answer by JudgeDread for binary format to pass tabular dataJudgeDread2009-05-05T12:19:46Z2009-05-05T12:19:46Z<p>I know you've said you don't want to use text but you should consider using B64. This allows for straight-forward and relatively efficient binary to text and back to binary conversion. The overhead is 1/3. Every three bytes of binary are converted to four bytes of text values. After converting to text you can use simple data style protocols. On the transmitting device you only need to implement the encoder. See full code below:</p>
<pre><code>/********************************************************************/
/* */
/* Functions: */
/* ---------- */
/* TBase64Encode() */
/* TBase64Decode() */
/* TBase64EncodeBlock() */
/* TBase64DecodeBlock() */
/* */
/********************************************************************/
#include "yourstuff.h"
// This table is used to encode 6 bit binary to Base64 ASCII.
static char Base64Map[] = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdef"
"ghijklmnopqrstuvwxyz0123456789+/";
// This table is used to decode Base64 ASCII back to 6 bit binary.
static char Base64Decode[]=
{
62, // '+'
99, 99, 99, // **** UNUSED ****
63, // '/'
52, 53, 54, 55, 56, 57, 58, 59, 60, 61, // '0123456789'
99, 99, 99, 99, 99, 99, 99, // **** UNUSED ****
0, 1, 2, 3, 4, 5, 6, 7, 8, 9, // 'ABCDEFGHIJ'
10, 11, 12, 13, 14, 15, 16, 17, 18, 19, // 'KLMNOPQRST'
20, 21, 22, 23, 24, 25, // 'UVWXYZ'
99, 99, 99, 99, 99, 99, // **** UNUSED ****
26, 27, 28, 29, 30, 31, 32, 33, 34, 35, // 'abcdefghij'
36, 37, 38, 39, 40, 41, 42, 43, 44, 45, // 'klmnopqrst'
46, 47, 48, 49, 50, 51 // 'uvwxyz'
};
/** Convert binary data to Base64 data.
*
* @return Size of output buffer if ok, -1 if problem (invalid paramaters).
*
* @param input - Pointer to input data.
* @param size - Number of bytes to encode.
* @param output - Pointer to output buffer.
*
* @note Up to caller to ensure output buffer is big enough. As a rough
* guide your output buffer should be (((size/3)+1)*4) bytes.
*/
int TBase64Encode( const BYTE *input, int size, PSTR output)
{
int i, rc=0, block_size;
while (size>0)
{
if (size>=3)
block_size = 3;
else
block_size = size;
i = TBase64EncodeBlock( input, block_size, output);
if (i==-1)
return -1;
input += 3;
output += 4;
rc += 4;
size -= 3;
}
return rc;
}
/** Convert Base64 data to binary data.
*
* @return Number of bytes in output buffer, negative number if problem
* as follows:
* -1 : Invalid paramaters (bad pointers or bad size).
* -2 : Outside of range value for Base64.
* -3 : Invalid base 64 character.
*
* @param input - Pointer to input buffer.
* @param size - Size of input buffer (in bytes).
* @param output - Pointer to output buffer.
*
* @note Up to caller to ensure output buffer is big enough. As a rough
* guide your output buffer should be (((size/4)+1)*3) bytes.
* NOTE : The input size paramater must be multiple of 4 !!!!
* Note that error codes -2 and -3 essentiallty mean the same
* thing, just for debugging it means something slight different
* to me :-). Calling function can just check for any negative
* response.
*/
int TBase64Decode( CPSTR input, int size, BYTE *output)
{
int output_size=0, i;
// Validate size paramater only.
if (size<=0 || size & 3)
return -1;
while (size>0)
{
i = TBase64DecodeBlock( input, output);
if (i<0)
return i;
output_size += i;
output += i;
input += 4;
size -= 4;
}
return output_size;
}
/** Convert up to 3 bytes of binary data to 4 bytes of Base64 data.
*
* @return 0 if ok, -1 if problem (invalid paramaters).
*
* @param input - Pointer to input data.
* @param size - Number of bytes to encode(1 to 3).
* @param output - Pointer to output buffer.
*
* @note Up to caller to ensure output buffer is big enough (4 bytes).
*/
int TBase64EncodeBlock( const BYTE *input, int size, PSTR output)
{
int i;
BYTE mask;
BYTE input_buffer[3];
// Validate paramaters (rudementary).
if (!input || !output)
return -1;
if (size<1 || size>3)
return -1;
memset( input_buffer, 0, 3);
memcpy( input_buffer, input, size);
// Convert three 8bit values to four 6bit values.
mask = input_buffer[2];
output[3] = mask & 0x3f; // Fourth byte done...
output[2] = mask >> 6;
mask = input_buffer[1] << 2;
output[2] |= (mask & 0x3f); // Third byte done...
output[1] = input_buffer[1] >> 4;
mask = input_buffer[0] << 4;
output[1] |= (mask & 0x3f); // Second byte done...
output[0] = input_buffer[0]>>2; // First byte done...
// TEST
// printf("[%02x,%02x,%02x,%02x]", output[0], output[1], output[2], output[3]);
// Convert 6 bit indices to base64 characters.
for (i=0; i<4; i++)
output[i] = Base64Map[output[i]];
// Handle special padding.
switch (size)
{
case 1:
output[2] = '=';
case 2:
output[3] = '=';
default:
break;
}
return 0;
}
/** Convert 4 bytes of Base64 data to 3 bytes of binary data.
*
* @return Number of bytes (1 to 3) if ok, negative number if problem
* as follows:
* -1 : Invalid paramaters (bad pointers).
* -2 : Outside of range value for Base64.
* -3 : Invalid base 64 character.
*
* @param input - Pointer to input buffer (4 bytes).
* @param output - Pointer to output buufer (3 bytes).
*
* @comm While there may be 1, 2 or 3 output bytes the output
* buffer must be 3 bytes. Note that error codes -2 and -3
* essentiallty mean the same thing, just for debugging it
* means something slight different to me :-). Calling function
* can just check for any negative response.
*/
int TBase64DecodeBlock( CPSTR input, BYTE *output)
{
int i, j;
int size=3;
BYTE mask;
BYTE input_buffer[4];
// Validate paramaters (rudementary).
if (!input || !output)
return -1;
memcpy( input_buffer, input, 4);
// Calculate size of output data.
if (input_buffer[3]=='=')
{
input_buffer[3] = 43;
size--;
}
if (input_buffer[2]=='=')
{
input_buffer[2] = 43;
size--;
}
// Convert Base64 ASCII to 6 bit data.
for (i=0; i<4; i++)
{
j = (int) (input_buffer[i]-43);
if (j<0 || j>79)
return -2; // Invalid char in Base64 data.
j = Base64Decode[j];
if (j==99)
return -3; // Invalid char in Base64 data.
input_buffer[i] = (char) j;
}
// TEST
// printf("[%02x,%02x,%02x,%02x]", input_buffer[0], input_buffer[1], input_buffer[2], input_buffer[3]);
// Convert four 6bit values to three 8bit values.
mask = input_buffer[1] >> 4;
output[0] = (input_buffer[0]<<2) | mask; // First byte done.
if (size>1)
{
mask = input_buffer[1] << 4;
output[1] = input_buffer[2] >> 2;
output[1] |= mask; // Second byte done.
if (size==3)
{
mask = input_buffer[2] << 6;
output[2] = input_buffer[3] | mask; // Third byte done.
}
}
return size;
}
</code></pre>
http://stackoverflow.com/questions/667410/the-benefits-of-using-function-pointers/672752#6727521Answer by JudgeDread for The Benefits of Using Function PointersJudgeDread2009-03-23T09:51:45Z2009-03-23T09:51:45Z<p>There are occasions when using function pointers can speed up processing. Simple dispatch tables can be used instead of long switch statements or if-then-else sequences.</p>
http://stackoverflow.com/questions/102714/what-was-your-first-home-computer/665537#6655370Answer by JudgeDread for What was your first home computer?JudgeDread2009-03-20T09:55:28Z2009-03-20T09:55:28Z<p>A Nascom 2 in 1980</p>
<p>Hardware :
2/4 MHz Z80, 32 kB RAM + 1k video ram, RS232, RF out, TTY, PIO lines, 300/1200baud casette, single board uncased.</p>
<p>Built in software :
2k monitor (NAS-SYS3) & 8k Microsoft ROM basic.</p>
<p>Heavily modded over the years, ended up as CP/M machine with dual floppies and 256k ram. Still have it in the shed, tried powering it up last year, dead as a dodo (doh).</p>
http://stackoverflow.com/questions/176580/what-was-your-first-programming-language/665511#6655110Answer by JudgeDread for What was your first programming language?JudgeDread2009-03-20T09:46:52Z2009-03-20T09:46:52Z<p>Basic on a Nascom 2 in 1980.</p>
http://stackoverflow.com/questions/562303/the-definitive-c-book-guide-and-list/565614#5656141Answer by JudgeDread for The Definitive C Book Guide and ListJudgeDread2009-02-19T14:45:52Z2009-02-19T14:45:52Z<p><strong>Advanced C.: Food for the Educated Palate</strong>
by Narain Gehani</p>
<p>One of my favourite C books, great on pointers, pointers to functions and a variety of advanced topic such as how stuff is stored in memory, dynamic memory, stack usage, function calling and parameter passing etc. Assumes you have a good grasp of 'C' to start with. </p>
<p><a href="http://rads.stackoverflow.com/amzn/click/0881750786" rel="nofollow">Hard to get</a></p>
http://stackoverflow.com/questions/551069/testing-pointers-for-validity-c-c/551120#551120-1Answer by JudgeDread for Testing pointers for validity (C/C++)JudgeDread2009-02-15T16:09:36Z2009-02-15T16:09:36Z<p>Setting the pointer to NULL before and after using is a good technique. This is easy to do in C++ if you manage pointers within a class for example (a string):</p>
<pre><code>class SomeClass
{
public:
SomeClass();
~SomeClass();
void SetText( const char *text);
char *GetText() const { return MyText; }
void Clear();
private:
char * MyText;
};
SomeClass::SomeClass()
{
MyText = NULL;
}
SomeClass::~SomeClass()
{
Clear();
}
void SomeClass::Clear()
{
if (MyText)
free( MyText);
MyText = NULL;
}
void SomeClass::Settext( const char *text)
{
Clear();
MyText = malloc( strlen(text));
if (MyText)
strcpy( MyText, text);
}
</code></pre>
http://stackoverflow.com/questions/521972/why-is-runtime-library-a-compiler-option-rather-than-a-linker-option/522839#5228391Answer by JudgeDread for Why is runtime library a compiler option rather than a linker option? JudgeDread2009-02-07T00:59:48Z2009-02-07T00:59:48Z<p>The compiler needs to know if you are generating single threaded or multi-threaded code. By default the compiler generates thread safe code (multi-threaded). You have to tell it if you want single thread code.If you change the default the compiler changes the default run-time library (you can always override this in the linker command options, just be sure that the library you pick has the same code structure as your object files: single-threaded static, multi-threaded static or multi-threaded DLL). Note that there is no single-threaded DLL option (by definition the run-time library DLL will have been built as thread safe as it is shared by multiple apps).</p>
http://stackoverflow.com/questions/510681/in-c-programming-can-i-use-multiply-and-divide-to-shift-bits/516105#5161050Answer by JudgeDread for In C Programming, can I use multiply and divide to shift bits?JudgeDread2009-02-05T14:25:37Z2009-02-05T14:25:37Z<p>Yes you can always replace shifts with power of 2 multiplications but as has been pointed out, why?. What hasn't been pointed out is that it is sometimes useful to replace multiplication with shifting and not just for simple powers of 2. For example in the good ol' days with 320 * 200 pixel buffers the offset to a pixel byte was y*320+x. This could be done as follows:</p>
<pre><code>int OffsetXY( int x, int y)
{
int offset;
y <<= 6;
offset = y;
offset += y << 2; // offset = original y * 320
return offset + x;
}
</code></pre>
<p>While this sort of is only of academic interest to most developers now, it can be useful in the embedded world (did some coding recently on the DS and this kind of thing was useful).</p>
http://stackoverflow.com/questions/402677/good-sites-blogs-for-fpga-development-projects/507730#5077300Answer by JudgeDread for Good sites/blogs for FPGA development projectsJudgeDread2009-02-03T16:03:10Z2009-02-03T16:03:10Z<p>Great site with interesting projects and articles</p>
<p><a href="http://www.fpga4fun.com/" rel="nofollow">http://www.fpga4fun.com/</a></p>
http://stackoverflow.com/questions/504442/what-is-the-best-way-to-change-to-a-currency-format/506321#5063213Answer by JudgeDread for What is the best way to change to a currency format?JudgeDread2009-02-03T08:14:33Z2009-02-03T08:14:33Z<p>Don't use floats for storing or representing monetary amounts. Use longs (if you need more than 4 billion cent use llongs). Its usually a good idea to represent currency in its minimum usable unit, example use 10000 to represent 100Euro). Then the correct way to format these values (assuming 100 cent to the euro or dollar) is:</p>
<pre><code>printf( "%d.%02d", value/100, value%100);
</code></pre>
<p>Hope that makes sense...</p>
<p>Calculations with currency values is a complex subject but you cant go far wrong is you always aim to have a rounded answer to the nearest currency unit (cent for example) and always make sure that rounding errors are calculated for (example, to divide 1 dollar three ways you should end up with 33+33+34 or 33+33+33+1).</p>
http://stackoverflow.com/questions/490990/should-i-still-learn-c-if-i-already-know-assembly/491039#4910392Answer by JudgeDread for Should I still learn C if I already know Assembly?JudgeDread2009-01-29T09:43:09Z2009-01-29T09:43:09Z<p>Absolutely! Learning C will improve your assembler programming as well. As you learn C you will start to transfer the structured method to your assembler programming. I noticed that the more I learn of high level languages the better the organization and understandability of my assemble language programming.</p>
<p>It is very useful to be able to mix C and assembler. Being able to use both in a single project allows you to use the appropriate solution in any given situation within that project. For most tasks C is quicker to code, occasionally the opposite is true, assembly language is quicker. Sometimes the assembly language is better able to express a particular aspect of a solution (assembler's close mapping to the hardware can make programming I/O or device management clearer). For more abstract concepts C can be clearer (C++ can be better again).</p>
<p>The same goes for learning C++. I find myself using an object oriented approach to both my C and assembler programming.</p>
<p>In the end it's horses for courses. Use the appropriate language for the problem at hand.</p>
http://stackoverflow.com/questions/437816/behaviour-of-printf-when-printing-a-d-without-supplying-variable-name/439229#4392290Answer by JudgeDread for Behaviour of printf when printing a %d without supplying variable name.JudgeDread2009-01-13T14:58:12Z2009-01-13T14:58:12Z<p>If you do this:</p>
<pre><code>func()
{
int x, y;
x = 5;
y = 7;
printf( "%d\n");
printf( "%d %d\n");
}
</code></pre>
<p>Output will be (on most compilers):</p>
<p>5</p>
<p>5 7</p>
<p>OR</p>
<p>7</p>
<p>7 5</p>
<p>Understand why this so, Grasshopper, and you will be a real C programmer!</p>
http://stackoverflow.com/questions/323419/simple-script-to-count-nloc/323427#3234271Answer by JudgeDread for Simple script to count NLOC?JudgeDread2008-11-27T10:33:32Z2008-11-27T10:33:32Z<p>Check out DPack plugin for Visual Studio. It has a stats report for any solution/project.</p>
http://stackoverflow.com/questions/320600/make-build-problem3Make / Build problem....JudgeDread2008-11-26T12:52:35Z2008-11-26T19:55:24Z
<p>I have a library consisting of approx 100 source files. I want one of the sources to be always rebuilt if any of the other files have been compiled but I dont want it built every time I run the make/build.</p>
<p>Basically I want this file to have the last build date/time built into it so any application linking to the library can check the last build time/date. Is there any other way to do this?</p>
http://stackoverflow.com/questions/313519/whats-the-coolest-machine-youve-ever-worked-on/313707#3137073Answer by JudgeDread for What's the coolest machine you've ever worked on?JudgeDread2008-11-24T08:58:03Z2008-11-24T08:58:03Z<p>Not the coolest, but certainly interesting. In the late 80s I worked on the LEC 16 (a mini made by Lockheed), also called the MAC 16. I was working in the middle-east on air traffic control systems and these dumb-asses had been sold this system (last time it was used in the States was in early 70s). The system had core memory! (4k words per 16" * 16" board). The boot 'ROM'' was a 16" * 16" board with 4096 bits whose value was determined by individual diodes (there or not there). To get it to do anything you had to load a boot-loader through the front panel (like the Altair 8080), although it was easy enough to coax it to load a paper tape from a teletype. Storage consisted of usual IBM style tape drives and a mad fixed/removable disk (two platters, one removable 2.somerthing MB on the fixed platter, 1.something MB on the removable). Even in the 80s this was pile of obsolete crud. The main unit (excluding storage) was a 6 foot high steel cabinet. Mad!</p>
<p>For any history buffs out there here is the only thing I could find :
<a href="http://www.computerhistory.org/brochures/companies.php?alpha=j-l&company=com-42c1686f07480" rel="nofollow">http://www.computerhistory.org/brochures/companies.php?alpha=j-l&company=com-42c1686f07480</a></p>
<p>By the way, the coolest computer I ever had, the Atari 520 when it was launched!</p>
http://stackoverflow.com/questions/304752/how-to-estimate-the-thread-context-switching-overhead/305106#3051061Answer by JudgeDread for How to estimate the thread context switching overhead?JudgeDread2008-11-20T12:16:50Z2008-11-20T12:16:50Z<p>I've only ever tried to estimate this once and that was on a 486! The upshot was that the processor context switch was taking about 70 instructions to complete (note this was happening for many OS api calls as well as thread switching). We calculated that it was taking approx 30us per thread switch (including OS overhead) on a DX3. The few thousand context switches we were doing per second was absorbing between 5-10% of the processor time.</p>
<p>How that would translate to a multi-core, multi-ghz modern processor I don't know but I would guess that unless you were completely going over the top with thread switching its a negligible overhead.</p>
<p>Note that thread creation/deletion is a more expensive CPU/OS hogger than activating/deactivating threads. A good policy for heavily threaded apps is to use thread pools and activate/deactivate as required.</p>
http://stackoverflow.com/questions/260380/are-non-pure-virtual-functions-with-parameters-bad-practice/261335#261335-2Answer by JudgeDread for Are non-pure virtual functions with parameters bad practice?JudgeDread2008-11-04T09:30:44Z2008-11-04T09:30:44Z<p>The simplest answer to this is shown below:</p>
<pre><code>class Base {
virtual void OnlyImplementThisSometimes(int x) { x;}
};
</code></pre>
<p>A simple reference to the variable which does absolutely nothing will remove all warnings (from VC++ at highest level anyway).</p>
http://stackoverflow.com/questions/233242/rs232-communication-can-i-use-it-to-create-a-steady-state-signal/243436#2434360Answer by JudgeDread for RS232 Communication - Can I use it to create a steady state signal?JudgeDread2008-10-28T13:59:55Z2008-10-28T13:59:55Z<p>While the first answer is correct it may not be possible to use this technique (using DTR or DSR) on many micro controllers as they may not have those signals (many micro controllers may just have the basic RX/TX lines and you would often have to use other i/o ports if you wanted extra control/status lines. However, all is not lost, many RS232 controllers allow you to set the TX line to 'mark' or 'space' (i.e set the TX line to logic high or low). This would allow you to get your steady state signal. The RX line on the receiver can be checked to see if its at mark or space level.</p>
http://stackoverflow.com/questions/120957/c-usage-in-embedded-systems/190581#1905811Answer by JudgeDread for C++ usage in embedded systemsJudgeDread2008-10-10T08:58:26Z2008-10-10T08:58:26Z<p>Having used both the GCC ARM compiler and the ARM's own SDT I'd have the following comments:</p>
<ul>
<li><p>The ARM SDT produces tighter, faster
code but is <em>very</em> expensive (>Eur5k
per seat!). At my previous job we
used this compiler and it was ok.</p></li>
<li><p>The GCC ARM tools works very well
though and it's what I use on my own
projects (GBA/DS).</p></li>
<li><p>Use 'thumb' mode as this reduces
code size significantly. On 16 bit bus variants of the ARM (such as the GBA) there is also a speed advantage.</p></li>
<li><p>64k is seriously small for C++
development. I'd use C & Assembler
in that environment.</p></li>
</ul>
<p>On such a small platform you'll have to be careful of stack usage. Avoid recursion, large automatic (local) data structures etc. Heap usage will also be an issue (new, malloc etc). C will give you more control of these issues.</p>
http://stackoverflow.com/questions/177532/where-should-i-begin-with-hdls/190530#1905301Answer by JudgeDread for Where should I begin with HDLs?JudgeDread2008-10-10T08:36:57Z2008-10-10T08:36:57Z<p>Check out this site:
<a href="http://www.fpga4fun.com/" rel="nofollow">http://www.fpga4fun.com/</a></p>
<p>Nice simple projects using simple tools. I used one of these boards a few years ago to build a small VGA display system for use as a notice board.</p>
<p>Looking at the site again I'm thinking of getting a Xylo-LM board as it has an ARM processor as well as SDRAM and a Xilinx Spartan 3e.</p>
<p>Another board I used before was the XPort 2 from Charmed Labs. This plugs into a Gameboy Advance which is well supported with open source development tools.</p>
<p>Check out:
<a href="http://www.charmedlabs.com/index.php?option=com_virtuemart&page=shop.browse&category_id=6&Itemid=43" rel="nofollow">http://www.charmedlabs.com/index.php?option=com_virtuemart&page=shop.browse&category_id=6&Itemid=43</a></p>
http://stackoverflow.com/questions/171399/when-to-use-fixed-point-these-days/171907#1719072Answer by JudgeDread for When to use Fixed Point these daysJudgeDread2008-10-05T12:38:18Z2008-10-05T12:38:18Z<p>Its nearly ALWAYS faster to use fixed point (experience of x86, pentium, 68k and ARM). It can, though, also depend on the application type. For graphics programming (one of my main uses of fixed point) I've been able to optimize the code using prebuilt cosine tables, log tables etc. But also the basic mathematical operations have also proven faster.</p>
<p>A comment on financial software. It was said in an earlier answer that fixed point is useful for financial calculations. In my own experience (development of large treasury management system and extensive experience of credit card processing) I would NOT use fixed point. You will have rounding errors using either floating or fixed point. We always use whole amounts to represent monetary amounts, counting the minimum amount possible (1c for Euro or dollar). This ensure no partial amounts are ever lost. When doing complex calculations values are converted to doubles, application specific rounding rules are applied and results are converted back to whole numbers.</p>
http://stackoverflow.com/questions/39468/calling-dll-functions-from-vb62Calling DLL functions from VB6.JudgeDread2008-09-02T13:11:25Z2008-09-18T12:07:00Z
<p>I've got a Windows DLL that I wrote, written in C/C++ (all exported functions are 'C'). The DLL works fine for me in VC++. I've given the DLL to another company who do all their development in VB. They seem to be having a problem linking to the functions. I haven't used VB in ten years and I don't even have it installed. What could be the problem?</p>
<p>I've declared all my public functions as follows:</p>
<h1>define MYDCC_API __declspec(dllexport)</h1>
<p>MYDCCL_API unsigned long MYDCC_GetVer( void);
.
.
.</p>
<p>Any ideas?</p>
<p><hr /></p>
<p>Finally got back to this today and have it working. The answers put me on the right track but I found this most helpful:</p>
<p><a href="http://www.codeproject.com/KB/DLL/XDllPt2.aspx" rel="nofollow">http://www.codeproject.com/KB/DLL/XDllPt2.aspx</a></p>
<p>Also, I had a few problems passing strings to the DLL functions, I found this helpful:</p>
<p><a href="http://www.flipcode.com/archives/Interfacing_Visual_Basic_And_C.shtml" rel="nofollow">http://www.flipcode.com/archives/Interfacing_Visual_Basic_And_C.shtml</a></p>
<p><hr /></p>
http://stackoverflow.com/questions/47981/how-do-you-set-clear-and-toggle-a-single-bit-in-c/83645#836450Answer by JudgeDread for How do you set, clear and toggle a single bit in C?JudgeDread2008-09-17T14:10:22Z2008-09-17T14:10:22Z<p>If you're doing a lot of bit twiddling you might want to use masks which will make the whole thing quicker. The following functions are very fast and still flexible (they allow bit twiddling in bit maps of any size).</p>
<pre><code>const unsigned char TQuickByteMask[8] =
{
0x01, 0x02, 0x04, 0x08,
0x10, 0x20, 0x40, 0x80,
};
/** Set bit in any sized bit mask.
*
* @return none
*
* @param bit - Bit number.
* @param bitmap - Pointer to bitmap.
*/
void TSetBit( short bit, unsigned char *bitmap)
{
short n, x;
x = bit / 8; // Index to byte.
n = bit % 8; // Specific bit in byte.
bitmap[x] |= TQuickByteMask[n]; // Set bit.
}
/** Reset bit in any sized mask.
*
* @return None
*
* @param bit - Bit number.
* @param bitmap - Pointer to bitmap.
*/
void TResetBit( short bit, unsigned char *bitmap)
{
short n, x;
x = bit / 8; // Index to byte.
n = bit % 8; // Specific bit in byte.
bitmap[x] &= (~TQuickByteMask[n]); // Reset bit.
}
/** Toggle bit in any sized bit mask.
*
* @return none
*
* @param bit - Bit number.
* @param bitmap - Pointer to bitmap.
*/
void TToggleBit( short bit, unsigned char *bitmap)
{
short n, x;
x = bit / 8; // Index to byte.
n = bit % 8; // Specific bit in byte.
bitmap[x] ^= TQuickByteMask[n]; // Toggle bit.
}
/** Checks specified bit.
*
* @return 1 if bit set else 0.
*
* @param bit - Bit number.
* @param bitmap - Pointer to bitmap.
*/
short TIsBitSet( short bit, const unsigned char *bitmap)
{
short n, x;
x = bit / 8; // Index to byte.
n = bit % 8; // Specific bit in byte.
// Test bit (logigal AND).
if (bitmap[x] & TQuickByteMask[n])
return 1;
return 0;
}
/** Checks specified bit.
*
* @return 1 if bit reset else 0.
*
* @param bit - Bit number.
* @param bitmap - Pointer to bitmap.
*/
short TIsBitReset( short bit, const unsigned char *bitmap)
{
return TIsBitSet( bit, bitmap) ^ 1;
}
/** Count number of bits set in a bitmap.
*
* @return Number of bits set.
*
* @param bitmap - Pointer to bitmap.
* @param size - Bitmap size (in bits).
*
* @note Not very efficient in terms of execution speed. If you are doing
* some computationally intense stuff you may need a more complex
* implementation which would be faster (especially for big bitmaps).
* See (http://graphics.stanford.edu/~seander/bithacks.html).
*/
int TCountBits( const unsigned char *bitmap, int size)
{
int i, count=0;
for (i=0; i<size; i++)
if (TIsBitSet( i, bitmap)) count++;
return count;
}
</code></pre>
<p>Note, to set bit 'n' in a 16 bit integer you do the following:</p>
<p>TSetBit( n, &my_int);</p>
<p>It's up to you to ensure that the bit number is within the range of the bit map that you pass. Note that for little endian processors that bytes, words, dwords,qwords etc, map correctly to each other in memory (main reason that little endian processors are 'better' than big-endian processors, ah, I feel a flame war coming on...).</p>
http://stackoverflow.com/questions/1716663/c-memcpy-a-function/1719908#1719908Comment by JudgeDread on C memcpy() a functionJudgeDread2009-11-16T16:40:47Z2009-11-16T16:40:47ZNot an answer...http://stackoverflow.com/questions/1015944/how-does-an-array-of-pointers-to-pointers-work/1015998#1015998Comment by JudgeDread on How does an array of pointers to pointers work?JudgeDread2009-06-19T09:00:23Z2009-06-19T09:00:23ZArrays are NOT pointers.http://stackoverflow.com/questions/963911/how-to-initialize-char-array-from-a-stringComment by JudgeDread on How to Initialize char array from a string.JudgeDread2009-06-08T08:41:36Z2009-06-08T08:41:36Zwhy not just use char a[]="ABCD";http://stackoverflow.com/questions/949937/win32-memory-issue-differences-between-debug-release/951164#951164Comment by JudgeDread on WIN32 memory issue (differences between debug/release).JudgeDread2009-06-04T16:25:06Z2009-06-04T16:25:06ZThanks, thats it....http://stackoverflow.com/questions/949937/win32-memory-issue-differences-between-debug-release/949960#949960Comment by JudgeDread on WIN32 memory issue (differences between debug/release).JudgeDread2009-06-04T12:23:43Z2009-06-04T12:23:43ZRunning out of memory manifests itself by a call to LocalAlloc returning NULL.... :-)http://stackoverflow.com/questions/949937/win32-memory-issue-differences-between-debug-releaseComment by JudgeDread on WIN32 memory issue (differences between debug/release).JudgeDread2009-06-04T11:49:29Z2009-06-04T11:49:29ZI realize I may have to upgrade the app to 64bit to get access to larger amounts of fixed memory. However I need to know the limitation so as to convince my boss that this is only way so I need to make a decision:
a) Figure out how to allocate a bit more memory (approx 100mb). Job done
-OR-
b) Justify the upgrade to 64bit and get other teams to update their libraries.
http://stackoverflow.com/questions/949937/win32-memory-issue-differences-between-debug-release/949982#949982Comment by JudgeDread on WIN32 memory issue (differences between debug/release).JudgeDread2009-06-04T11:38:28Z2009-06-04T11:38:28Za) I just do.
b) I don't have any memory leaks. As I said all memory is allocated at start.http://stackoverflow.com/questions/949937/win32-memory-issue-differences-between-debug-release/949960#949960Comment by JudgeDread on WIN32 memory issue (differences between debug/release).JudgeDread2009-06-04T11:38:25Z2009-06-04T11:38:25ZNot a 64bit app.http://stackoverflow.com/questions/862934/count-the-network-interfaces-with-wsaioctl-function-win32-api/863061#863061Comment by JudgeDread on Count the network interfaces with WSAIoctl function (WIN32 API)JudgeDread2009-05-14T15:49:02Z2009-05-14T15:49:02ZHmmn, this works for SIO_ADDRESS_LIST_QUERY, I get a different answer for SIO_GET_INTERFACE list. Looking to see what the differences are....http://stackoverflow.com/questions/305077/can-i-set-visual-stdio-2005-to-ignore-assertions-in-a-specific-region-of-code-whi/852597#852597Comment by JudgeDread on Can I set Visual Stdio 2005 to ignore assertions in a specific region of code while debugging....JudgeDread2009-05-14T11:50:52Z2009-05-14T11:50:52ZThanks, I'll give it a try.........
http://stackoverflow.com/questions/102714/what-was-your-first-home-computer/169427#169427Comment by JudgeDread on What was your first home computer?JudgeDread2009-03-20T09:58:45Z2009-03-20T09:58:45ZThe Nascom ruled (the earth in the age of dinosaurs). I had a Nascom 2 (the greatest Z80 based machine of all time!).
http://stackoverflow.com/questions/575840/which-c-compiler-do-you-recommend-for-windows/575851#575851Comment by JudgeDread on Which C Compiler do you recommend for windowsJudgeDread2009-02-22T21:50:02Z2009-02-22T21:50:02ZExpress edition is pretty useless. Missing too many bits that are needed for real windows development...http://stackoverflow.com/questions/551069/testing-pointers-for-validity-c-c/551120#551120Comment by JudgeDread on Testing pointers for validity (C/C++)JudgeDread2009-02-15T23:02:16Z2009-02-15T23:02:16ZUpdated question makes my answer wrong, of course (or at least an answer to another question). I agree with the answers that basically say, let them crash if they abuse th api. You can't stop people hitting themselves in the thumb with a hammer...http://stackoverflow.com/questions/540047/is-the-c-language-really-outdated/541666#541666Comment by JudgeDread on Is the C language really outdated?JudgeDread2009-02-15T16:42:26Z2009-02-15T16:42:26ZDon't forget all those multimillion dollar games.....http://stackoverflow.com/questions/551069/testing-pointers-for-validity-c-c/551087#551087Comment by JudgeDread on Testing pointers for validity (C/C++)JudgeDread2009-02-15T16:11:55Z2009-02-15T16:11:55ZStill doesn't tell you if you're pointing at the right thing....