MODBUS ASCII LRC Computation in C++

In C++, IoT by timfanelliLeave a Comment

I’m currently working on a project interfacing a BeagleBone Black to a drive control unit, which communicates using MODBUS ASCII over RS-232. The biggest challenge with the communication protocol is …

Monty Hall Problem

In C++, Programming by timfanelliLeave a Comment

I read a very interesting article on the NY Times today, linked from this /. article, about the Monty Hall Problem. The problem has apparently caused much embarrassment among mathematicians, …

C++ const Correctness

In C++, Programming by timfanelliLeave a Comment

Here’s a very thorough article that supplements my recent const rant very nicely. I received a number of emails back arguing against my point that const is important and influential. …

C++ const Keyword

In C++, Programming by timfanelliLeave a Comment

const is, in my opinion, the most influential and least frequeuently used keyword in the C++ programming language. This may seem like a very bold statement, but having recently started …