Search Results

1
vote

Using bitwise operators for Booleans in C++

Contrary to Patrick's answer, C++ has no ^^ operator for performing a short-circuiting exclusive or. If you think about it for a second, having a ^^ operator wouldn't make …
2
votes

C++ usage in embedded systems

If you're using an ARM7TDMI, avoid unaligned memory accesses at all costs. The basic ARM7TDMI core …
1
vote

Sell me on using const correctness

For embedded programming, using const judiciously when declaring global data structures can save a lot of RAM by causing the constant data to be located in ROM or flash without copying …
5
votes

## in Macros

Here's a gotcha that I ran into when upgrading to a new version of a compiler: Unnecessary use of the token-pasting operator (##) is non-portable and may generate unde …
0
votes

Reconciling classes, inheritance, and C callbacks

Could your callback choose an instance based on a and/or b? If so, then register your library support classes in a global/static map and then have callbackADispatch( …
0
votes

When would you use an array rather than a vector/string?

I work on a shared library that needs access to structured data. This data is known at compile time, so it uses file-scoped constant arrays of POD (plain old data) structures to ho …