AShelly

3,085
Reputation
320 views

Registered User

Name AShelly
Member for 1 year
Seen 2 days ago
Website
Location
Age
2d
awarded  Self-Learner
2d
comment Bit Shifting, Masking or a Bit Field Struct?
There are cases where using a bitfield to parse a message is perfectly reasonable. For instance in embedded apps where the program is tied closely to the DSP chip's capabilities, there is no reason to worry about portability, since an platform change would break everything. Figuring out how the compiler handles bitfields, and taking advantage of it allows you to write much cleaner code.
2d
comment Extracting bits
"what the common Intel chips do is not useful" - what do they do?
Dec
2
answered References for implementing calendar functionality in an embedded system?
Dec
2
answered Howto pipe raw PCM-Data from /dev/ttyUSB0 to soundcard?
Dec
2
comment Search file 1 in file 2
In that case, a basic string search should work, just treat the PCM like a character stream. Just make sure to allow `0`s - don't treat them as terminators.
Nov
26
answered Search file 1 in file 2
Nov
25
comment prior declarations of functions
True - I was assuming complete prior declaration with a prototype. This is still a good example of why prototype definition is a good idea even when not strictly required.
Nov
25
comment prior declarations of functions
So if functions don't have to be prior delcared (or at least didn't until c99), isn't point 1 invalid? The complier can recognize a function without a prior delaration.
Nov
25
answered prior declarations of functions
Nov
25
answered How to avoid press enter with any getchar()
Nov
25
comment Are there any open-source military/war strategy simulating engines/frameworks?
10 years ago I worked with several clients under development by defense contractors. There were Abrams and Bradley crew training simulators, and a "god's eye view" client for setting up scenarios. I heard rumors of an infantry client, but I never saw it.
Nov
24
answered What’s a good, simple, 2D rectangles-only collision detection algorithm?
Nov
24
answered Are there any open-source military/war strategy simulating engines/frameworks?
Nov
24
answered Improve “resolution” of random data
Sep
23
comment Real-time pitch detection using FFT
and what's wrong with that? Middle C is 440 Hz, so that range seems reasonable if sampling your mic. What frequencys do you expect?
Sep
21
revised What are the differences between if, else, and else if?
added 1 characters in body
Sep
21
comment What are the differences between if, else, and else if?
I'm so embarrassed...
Sep
18
accepted More efficient: large array or many scalars
Sep
17
answered What are the differences between if, else, and else if?
Sep
17
comment More efficient: large array or many scalars
If I wanted even better performance, I'd average over 1024 samples so i could also do idx++;idx&=0x3F;
Sep
17
comment More efficient: large array or many scalars
on the embedded processor I use most (TI 28xx), n=n<X?n:X; compiles to a single MIN instruction, while if (n>X) n=X; becomes a pipeline-stalling branch.
Sep
16
awarded  Popular Question
Sep
16
answered More efficient: large array or many scalars
Sep
16
comment How to break out from a ruby block?
how does that not work?
Sep
16
awarded  Yearling
Sep
10
answered How to break out from a ruby block?
Aug
31
answered GUI based debugger for Ruby?
Aug
27
comment Algorithm to permute elements in Array
I think there is an error in your list, shouldn't 2413 follow 2341?
Aug
18
answered Strings in C: pitfalls and techniques
Aug
17
comment How can I correctly prefix a word with “a” and “an”?
So it appears that there is no one "correct" way, and the rule depends on your accent. So just choose a simple hurestic, and claim any oddities are due to the program's accent.
Aug
17
comment Forward declaration problem
like: void func(int parm); funcPtr = &func; Yes, it should be possible - the linker can resolve that one.
Aug
14
answered Forward declaration problem
Aug
13
answered What is this x86 inline assembly doing?
Aug
4
answered What configuration file format allows the inclusions of otherfiles and the inheritance of settings?
Aug
4
answered What can I use for real-time plotting/graphing in C++?
Aug
3
answered why is the call stack set up like this?
Jul
31
answered Calculate the derivative ([i] - [i - 1]) in Ruby.
Jul
30
answered Heap corruption
Jul
30
answered Does a background in physics make you a better programmer?
Jul
29
answered How to create an “intercept missile” for a game?
Jul
29
comment How to compute one’s complement using Ruby’s bitwise operators ?
1^0b1111 == 1, not 2. How do you decide how many leading zeros to use?
Jul
29
revised How to compute one’s complement using Ruby’s bitwise operators ?
example flipper
Jul
29
revised How to compute one’s complement using Ruby’s bitwise operators ?
expanded
Jul
29
answered How to compute one’s complement using Ruby’s bitwise operators ?
Jul
28
answered How do I use ‘placeholder text’ in a win32 edit control?
Jul
28
answered How the dynamics of a sports simulation game works?
Jul
28
awarded  Notable Question
Jul
23
comment What is the Best Practice for Combating the Console Closing Issue?
whenever I do this, I constantly find myself stepping into crt0.c, which is really annoying.
Jul
23
comment What is the Best Practice for Combating the Console Closing Issue?
I like the debug #define idea. definitely better than a breakpoint.