Monthly Archives: January 2016

EC-135T2+ Emergency Procedure Guide

Use at your own risk. No effort has been made to ensure these documents are current or error free. Annotated guides are located here: Word format and PDF format.

Posted in Uncategorized | Leave a comment

(Sort of) Running an Arduino Program Stored in Memory

Ever wonder if you could call a program stored as machine code inside of an array? It’s possible, however, there are some hurdles to overcome. First, the arduino (an ATMEL AVR based μC) is based upon the modified Harvard architecture. … Continue reading

Posted in Uncategorized | Tagged , , , , , , , , | Leave a comment

Consequences of Global vs. Local Variable in Arduino Code

This is an overly simplistic comparison of the consequences of using a global vs. local variable on the Arduino. Beyond the obvious variable scope, take note of the program size trade off (code and data segments), startup code differences, stack … Continue reading

Posted in Uncategorized | Tagged , | Leave a comment