<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Dan&#039;s Landing</title>
	<atom:link href="https://www.dannyvacar.ca/blog/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.dannyvacar.ca/blog</link>
	<description>Adventures in the air, on the ground and in between</description>
	<lastBuildDate>
	Wed, 23 Aug 2017 13:47:53 +0000	</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=5.1.6</generator>
	<item>
		<title>Start flight simulator with higher priority</title>
		<link>https://www.dannyvacar.ca/blog/start-flight-simulator-with-higher-priority/</link>
				<comments>https://www.dannyvacar.ca/blog/start-flight-simulator-with-higher-priority/#respond</comments>
				<pubDate>Fri, 05 Dec 2014 02:03:06 +0000</pubDate>
		<dc:creator><![CDATA[Danny]]></dc:creator>
				<category><![CDATA[Flight Simulation]]></category>
		<category><![CDATA[FSX]]></category>
		<category><![CDATA[FSX ATC]]></category>
		<category><![CDATA[process priority]]></category>
		<category><![CDATA[realtime priority]]></category>

		<guid isPermaLink="false">http://www.dannyvacar.ca/blog/?p=2280</guid>
				<description><![CDATA[A peculiar issue of Microsoft&#8217;s Flight Simulator X is that at times ATC forgets to vector me in to my final destination leaving me cruising at 2000&#8242; burning fuel going away from the airport. There are other troubles with the FSX ATC but this one will be the focus of this quick article. Before we ... <span class="more"><a class="more-link" href="https://www.dannyvacar.ca/blog/start-flight-simulator-with-higher-priority/">[Read more...]</a></span>]]></description>
								<content:encoded><![CDATA[<p>A peculiar issue of Microsoft&#8217;s Flight Simulator X is that at times <strong>ATC forgets to vector me in to my final destination</strong> leaving me cruising at 2000&#8242; burning fuel going away from the airport. There are other troubles with the FSX ATC but this one will be the focus of this quick article. Before we go on please make sure you understand what you are doing and what the consequences can be. I am not responsible for any issues you may run into and the changes below may lead to system instability.</p>
<p>One way to get around ATC forgetting about your flight is to run FSX with higher process priority. If you are not familiar with what this means, Microsoft has a <a href="http://msdn.microsoft.com/en-us/library/windows/desktop/ms685100%28v=vs.85%29.aspx">technical description</a> on their website. An extremely over-simplified explanation is that in Windows (and other operating systems) each process started gets a certain amount of time from the processor to do its work. Processes with higher priority get a larger amount of time while those with lower priority get a smaller amount of time. The central processing unit goes around in &#8220;circles&#8221; to each process and says &#8220;Go!&#8221; &#8220;Stop!&#8221; and the process does its work in the time between the two prompts. Process priority can be manually or programmatically be changed (a process can say &#8220;I need more dedicated time&#8221;). With a higher priority a process has faster access to memory and storage and is able to perform its operations faster and be more precise.</p>
<h3>Manually Changing Priority</h3>
<p>To change the process priority manually you can use a program like <a href="http://technet.microsoft.com/en-ca/sysinternals/bb545021.aspx">SysInternals</a> <a href="http://technet.microsoft.com/en-ca/sysinternals/bb896653">Process Explorer</a>.</p>
<ol>
<li>Start your process (Flight Sim X in this case)</li>
<li>Start Process Explorer</li>
<li>Find the executable in the list of processes (&#8220;fsx.exe&#8221;)</li>
<li>Right-click on it, select &#8220;Set Priority&#8221; then &#8220;Realtime: 24&#8221; or &#8220;High: 13&#8221;</li>
</ol>
<div id="attachment_2282" style="width: 751px" class="wp-caption aligncenter"><img aria-describedby="caption-attachment-2282" class="wp-image-2282 size-full" title="Changing the process priority using Process Explorer" src="https://www.dannyvacar.ca/blog/wp-content/uploads/fsx_procexp.png" alt="Changing the process priority using Process Explorer" width="741" height="292" /><p id="caption-attachment-2282" class="wp-caption-text">Changing the process priority using Process Explorer</p></div>
<p>I would recommend experimenting with the High and Realtime setting. Running the process in Realtime will give it priority over a lot of other processes which could lead to system instability.</p>
<h3>Automating Changing the Priority</h3>
<p>Changing the priority manually is simple enough to do but what if you forget to do it and only remember 4 hours into a flight? Alt-Tabbing out of Flight Simulator if it&#8217;s running in full-screen mode is gutsy and can cause it to crash plus it takes away from the experience. Luckily processes can be given a priority at start time with a few simple lines of batch script:</p><pre class="crayon-plain-tag">@ECHO OFF
echo "Start FSX with realtime priority"
:: Start FSX with realtime priority
start "D:\Program Files (x86)\Microsoft Games\Microsoft Flight Simulator X\" /REALTIME "D:\Program Files (x86)\Microsoft Games\Microsoft Flight Simulator X\fsx.exe"</pre><p>The end result is the same as in the previous section: the process &#8220;fsx.exe&#8221; will be running with realtime priority.</p>
<p>To use the script above simply open Notepad (Click Start and search for Notepad), copy and paste the script above into the Notepad window and save it with a &#8220;.bat&#8221; extension. You may need to change some parameters to match your system.</p>
<p>The &#8220;start&#8221; command I use has the following syntax:</p><pre class="crayon-plain-tag">start "{Path to Flight Simulator X directory}" /{PRIORITY; for all possible values &lt;a href="http://msdn.microsoft.com/en-us/library/windows/desktop/ms685100%28v=vs.85%29.aspx"&gt;see here&lt;/a&gt;} "{Path to Flight Simulator X executable}"</pre><p>I like to enclose paths in quotes to make sure they are resolved properly.</p>
<h3>Bonus Chatter</h3>
<p>This can be applied to any other program as well, flight simulator or otherwise. All you have to do is change the paths to point to your executable of choice.</p>
<p>One thing to note is that the priority assignment only applies to the parent process, it does not get transferred to child processes spawned by the parent process. For example in the image above, while &#8220;fsx.exe&#8221; will run in Realtime, with priority 24, &#8220;aircarriers.exe&#8221; and &#8220;javaw.exe&#8221; below it will not. This is important for simulators such as DCS World where the Launcher is a different process than the singleplayer and multiplayer environments.</p>
<p>There are also other priority values which can be assigned to processes. The full list can be found in the <a href="http://msdn.microsoft.com/en-us/library/windows/desktop/ms685100%28v=vs.85%29.aspx">Scheduling Priorities</a> article on the Microsoft website. The &#8220;start&#8221; command supports the following priority classes:</p>
<ul>
<li>BELOWNORMAL &#8211; Start application in the BELOWNORMAL priority class.</li>
<li>NORMAL &#8211; Start application in the NORMAL priority class.</li>
<li>LOW &#8211; Start application in the IDLE priority class.</li>
<li>ABOVENORMAL &#8211; Start application in the ABOVENORMAL priority class.</li>
<li>HIGH &#8211; Start application in the HIGH priority class.</li>
<li>REALTIME &#8211; Start application in the REALTIME priority class.</li>
</ul>
<p>Find out more about the &#8220;start&#8221; command by running &#8220;<code>start /?</code>&#8221; in a command prompt.</p>
<p>One last tip if you record games: I often forgot to start FRAPS or DxTory until just before I wanted to take a screenshot or start recording. The same script which sets the priority of the process can be used to start other, supporting programs. To start FRAPS I added <code>start "" "D:\Fraps\fraps.exe"</code> before starting FSX. I also put in a time out of two seconds to allow FRAPS to initialize before starting FSX by adding <code>timeout /t 2</code> to the script. My final script is:</p><pre class="crayon-plain-tag">@ECHO OFF
echo Start FRAPS
:: Start FRAPS
start "" "D:\Fraps\fraps.exe"
echo Wait 2 seconds for FRAPS to load
:: Wait for FRAPS to load (2 seconds)
timeout /t 2
echo Start FSX with realtime status and affinity on all but processor 0
:: Start FSX with realtime status and affinity on all but processor 0
start "D:\Program Files (x86)\Microsoft Games\Microsoft Flight Simulator X\" /REALTIME /AFFINITY 0xFE "D:\Program Files (x86)\Microsoft Games\Microsoft Flight Simulator X\fsx.exe"</pre><p>As always if this is has helped or you have further questions leave a comment below!</p>
]]></content:encoded>
							<wfw:commentRss>https://www.dannyvacar.ca/blog/start-flight-simulator-with-higher-priority/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
							</item>
		<item>
		<title>Saitek X55 Rhino conflicts with TeamSpeak client</title>
		<link>https://www.dannyvacar.ca/blog/saitek-x55-rhino-conflicts-with-teamspeak-client/</link>
				<comments>https://www.dannyvacar.ca/blog/saitek-x55-rhino-conflicts-with-teamspeak-client/#respond</comments>
				<pubDate>Mon, 01 Dec 2014 04:39:08 +0000</pubDate>
		<dc:creator><![CDATA[Danny]]></dc:creator>
				<category><![CDATA[Flight Simulation]]></category>
		<category><![CDATA[ghosting]]></category>
		<category><![CDATA[multiple keypresses]]></category>
		<category><![CDATA[saitek x55]]></category>
		<category><![CDATA[teamspeak]]></category>
		<category><![CDATA[x55]]></category>

		<guid isPermaLink="false">http://www.dannyvacar.ca/blog/?p=2275</guid>
				<description><![CDATA[I ran into some issues tonight with my Saitek X55 HOTAS: each key press was repeated instead of showing up just once. This made the aircraft systems uncontrollable and at least once it caused my computer to lock up. I couldn&#8217;t figure out what had changed since last week when everything was fine until I ... <span class="more"><a class="more-link" href="https://www.dannyvacar.ca/blog/saitek-x55-rhino-conflicts-with-teamspeak-client/">[Read more...]</a></span>]]></description>
								<content:encoded><![CDATA[<p>I ran into some issues tonight with my <a href="http://www.saitek.com/x55/">Saitek X55 HOTAS</a>: each key press was repeated instead of showing up just once. This made the aircraft systems uncontrollable and at least once it caused my computer to lock up. I couldn&#8217;t figure out what had changed since last week when everything was fine until I realized I had just gotten my TeamSpeak setup up and running again.</p>
<p>At least <a href="http://forums.eagle.ru/showthread.php?t=122307">one forum post</a> had mentioned multiple key presses from the X55 when the TeamSpeak client is running. To get around this issue you can either:</p>
<ol>
<li>Not use TeamSpeak; not really an option for online gaming</li>
<li>Instruct the client to read only keyboard and mouse inputs and ignore any other devices</li>
</ol>
<p>To instruct the TeamSpeak client to use only keyboard and mouse inputs:</p>
<ol>
<li>Open the TeamSpeak client</li>
<li>Go to &#8220;Settings -&gt; Options&#8221;</li>
<li>In the Options dialogue select &#8220;Hotkeys&#8221;</li>
<li>In the drop down box at the bottom right of the window select &#8220;Keyboard &amp; Mouse Only&#8221;</li>
<li>Click &#8220;OK&#8221; to exit</li>
</ol>
<div id="attachment_2276" style="width: 794px" class="wp-caption aligncenter"><img aria-describedby="caption-attachment-2276" class="size-full wp-image-2276" src="https://www.dannyvacar.ca/blog/wp-content/uploads/TeamSpeak_hotkeys.png" alt="The Hotkeys Options page in the TeamSpeak client" width="784" height="588" /><p id="caption-attachment-2276" class="wp-caption-text">The Hotkeys Options page in the TeamSpeak client</p></div>
<p>Leave a comment below to let me know if this helped you!</p>
]]></content:encoded>
							<wfw:commentRss>https://www.dannyvacar.ca/blog/saitek-x55-rhino-conflicts-with-teamspeak-client/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
							</item>
		<item>
		<title>Flashing your Arduino&#8217;s firmware (Part 2)</title>
		<link>https://www.dannyvacar.ca/blog/flashing-your-arduinos-firmware-part-2/</link>
				<comments>https://www.dannyvacar.ca/blog/flashing-your-arduinos-firmware-part-2/#respond</comments>
				<pubDate>Wed, 20 Aug 2014 14:00:25 +0000</pubDate>
		<dc:creator><![CDATA[Danny]]></dc:creator>
				<category><![CDATA[Embedded]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[arduino]]></category>
		<category><![CDATA[atmel]]></category>
		<category><![CDATA[device firmware update]]></category>
		<category><![CDATA[dfu]]></category>
		<category><![CDATA[firmware]]></category>
		<category><![CDATA[usb hid]]></category>

		<guid isPermaLink="false">http://www.dannyvacar.ca/blog/?p=2256</guid>
				<description><![CDATA[In the first part of this series I explained what software and hardware you will need to get started with flashing your Arduino board so that it can emulate other devices. In this post I&#8217;ll show you how to do it. Please note that while I&#8217;ve done this many times successfully, there is always the ... <span class="more"><a class="more-link" href="https://www.dannyvacar.ca/blog/flashing-your-arduinos-firmware-part-2/">[Read more...]</a></span>]]></description>
								<content:encoded><![CDATA[<p>In the <a href="https://www.dannyvacar.ca/blog/flashing-your-arduinos-firmware-part-1/">first part of this series</a> I explained what software and hardware you will need to get started with flashing your Arduino board so that it can emulate other devices. In this post I&#8217;ll show you how to do it. Please note that while I&#8217;ve done this many times successfully, there is always the chance that something may go wrong. I am willing to help but I can take no responsibility if the steps below render your Arduino board unusable.</p>
<p>At the end of the post you will find a list of sources I followed to compile the information for this series.</p>
<h3>What will happen?</h3>
<p>There are two Atmel chips on the Arduino board: one controls the communication to the computer while the other runs your code (Atmega16U2 and Atmega328P, respectively, on the board that I am using). To emulate a USB device the 16U2 needs to be configured to identify itself as the desired device and this is achieved by flashing it with firmware which is similar to what is written to the Arduino board when you upload your Sketch.</p>
<p>The larger (328P in my case) chip will handle all the logic and reading of inputs while the 16U2 will pass these inputs to the computer as the device it emulates, a keyboard for example.</p>
<h3>Development flow</h3>
<p>To develop new functionality for your USB device you will have to alter your development flow to account for the flashing of the 16U2. Whereas the normal development steps when working with an Arduino are:</p>
<ol>
<li>Write sketch</li>
<li>Compile</li>
<li>Upload</li>
<li>Run</li>
</ol>
<p>when your Arduino is emulating a USB device the steps become:</p>
<ol>
<li>Write sketch</li>
<li>Compile</li>
<li>Upload</li>
<li>Reset 16U2 (put in Device Firmware Update (DFU) mode)</li>
<li>Flash device firmware</li>
<li>Disconnect and reconnect</li>
</ol>
<p>The last three steps are also used to recover the Arduino so that you can upload more sketches to it:</p>
<ol>
<li>Put device in DFU mode</li>
<li>Flash Arduino firmware</li>
<li>Disconnect and reconnect</li>
</ol>
<h3>DFU mode</h3>
<p>You will need:</p>
<ul>
<li>Arduino board</li>
<li>Header jumper (or wire to connect between two headers)</li>
<li>USB cable</li>
<li>Atmel FLIP USB drivers (if on Windows)</li>
</ul>
<p>To enter DFU mode:</p>
<ol>
<li>Connect the board to the computer and make sure it is on</li>
<li>With the header jumpers or wire, connect the two headers closest to the USB cable (in red below) and keep connected for one second then remove the jumper. The board will flash and the Arduino COM port will disappear from the Arduino IDE. To recover at this point simply disconnect and reconnect the USB cable to power cycle the Arduino.<br />
<img class="aligncenter size-full wp-image-2257" src="https://www.dannyvacar.ca/blog/wp-content/uploads/ArduinoUno_R3_Front_jumpers-e1408496462222.jpg" alt="ArduinoUno_R3_Front_jumpers" width="450" height="311" /></li>
</ol>
<p>You are now in DFU mode. You will not be able to upload sketches to your Arduino any more at this point. To be able to communicate with the Atmega16U2 chip you have to install some drivers. To do this in a Windows environment follow the steps below.</p>
<ol>
<li>Open Device Manager on Windows and search for an unkown device.</li>
<li>Right click the device and select &#8220;Update Drive Software&#8230;&#8221;</li>
<li>Select &#8220;Browse my computer for driver software&#8221;</li>
<li>Navigate to the usb folder in the Atmel FLIP installation folder (C:\Program Files (x86)\Atmel\Flip 3.4.7\usb normally)</li>
<li>Select the file &#8220;atmel_usb_dfu.inf&#8221; to be installed</li>
</ol>
<p>You are now ready to flash the Atmega&#8217;s firmware.</p>
<h3>Flashing the firmware</h3>
<p>As a test, and to show you how to make your Arduino usable as an Arduino again we will first upload the official Arduino firmware. You will need all of the above plus</p>
<ul>
<li>Atmel FLIP software</li>
<li>Arduino firmware (in the first example I am using the file Arduino-usbserial-atmega16u2-Uno-Rev3.hex from the <a href="https://github.com/arduino/Arduino/tree/master/hardware/arduino/firmwares/atmegaxxu2/arduino-usbserial">Arduino github</a>)</li>
</ul>
<p>With the Arduino in DFU mode and the drivers installed:</p>
<ol>
<li>Start the Atmel FLIP software. You will be presented with the window below.<img class="aligncenter size-full wp-image-2261" src="https://www.dannyvacar.ca/blog/wp-content/uploads/AtmelFlip-e1408497828656.png" alt="AtmelFlip" width="400" height="335" /></li>
<li>Load the HEX file you wish to use by going to &#8220;File -&gt; Load HEX file&#8221;.</li>
<li>Select the target device by going to &#8220;Device -&gt; Select&#8230;&#8221; and choosing the model of chip, Atmega16U2 in my case.</li>
<li>Connect to the board by going to &#8220;Settings -&gt; Communication -&gt; USB&#8221; then selecting &#8220;Open&#8221;. The options in the Atmel FLIP window will now be enabled and you are ready to upload the firmware. <img class="aligncenter size-full wp-image-2262" src="https://www.dannyvacar.ca/blog/wp-content/uploads/AtmelFlip_ready-e1408498323392.png" alt="AtmelFlip_ready" width="400" height="335" /></li>
<li>Click on &#8220;Run&#8221; and wait for the firmware to be loaded. The circles next to the options checked will turn green.</li>
<li>At this point you can either disconnect and reconnect the board the the computer (power cycle it) or click on &#8220;Start Application&#8221; with the &#8220;Reset&#8221; option checked.</li>
</ol>
<p>If you chose the Arduino firmware you will see the COM port reappear in device manager. If you&#8217;ve loaded another device&#8217;s firmware look for that device in device manager. If you run into any problems, double check that the device is in DFU mode or that you&#8217;ve selected the appropriate target device in FLIP.</p>
<p>Leave your comments and questions below and I hope you enjoyed this tutorial!</p>
<h3>References</h3>
<p>To write this series I referred to the follow sites:</p>
<ul>
<li><a href="http://hunt.net.nz/users/darran/">Arduino Hacking</a> (firmware for USB HID devices)</li>
<li><a href="http://mitchtech.net/arduino-usb-hid-keyboard/">Mitch Tech Arduino USB keyboard</a></li>
<li>Lightweight USB Framework for AVR (<a href="http://www.fourwalledcubicle.com/LUFA.php">LUFA</a>)</li>
<li><a href="http://arduino.cc/en/Hacking/DFUProgramming8U2">Updating the Atmega8U2 and 16U2 on an Uno or Mega2560 using DFU</a></li>
<li><a href="http://www.kevindemarco.com/2014/01/02/arduino-uno-as-a-usb-hid-interface/">Arduino Uno as a USB HID Interface</a></li>
</ul>
]]></content:encoded>
							<wfw:commentRss>https://www.dannyvacar.ca/blog/flashing-your-arduinos-firmware-part-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
							</item>
		<item>
		<title>Flashing your Arduino&#8217;s firmware (Part 1)</title>
		<link>https://www.dannyvacar.ca/blog/flashing-your-arduinos-firmware-part-1/</link>
				<comments>https://www.dannyvacar.ca/blog/flashing-your-arduinos-firmware-part-1/#respond</comments>
				<pubDate>Wed, 20 Aug 2014 00:36:07 +0000</pubDate>
		<dc:creator><![CDATA[Danny]]></dc:creator>
				<category><![CDATA[Embedded]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[arduino]]></category>
		<category><![CDATA[atmel]]></category>
		<category><![CDATA[firmware]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[usb hid]]></category>

		<guid isPermaLink="false">http://www.dannyvacar.ca/blog/?p=2245</guid>
				<description><![CDATA[The Arduino platform is quite useful for making a quick prototype or when you&#8217;re getting started with embedded programming as a hobby. There are a number of shields available to extend a board&#8217;s capabilities but there is also a lot that can be done without any extra peripherals. In this series I will demonstrate how ... <span class="more"><a class="more-link" href="https://www.dannyvacar.ca/blog/flashing-your-arduinos-firmware-part-1/">[Read more...]</a></span>]]></description>
								<content:encoded><![CDATA[<p>The <a href="http://www.arduino.cc">Arduino</a> platform is quite useful for making a quick prototype or when you&#8217;re getting started with embedded programming as a hobby. There are a <a href="http://store.arduino.cc/category/5">number</a> <a href="https://www.sparkfun.com/categories/240">of shields</a> <a href="http://www.adafruit.com/category/17">available</a> to extend a <a href="http://store.arduino.cc/category/11">board&#8217;s</a> capabilities but there is also a lot that can be done without any extra peripherals.</p>
<p>In this series I will demonstrate how you can flash the Arduino Uno with new firmware and have it emulate another type of device belonging to the <a href="http://en.wikipedia.org/wiki/USB_human_interface_device_class">USB Human Interface Device class</a> (i.e. keyboard, mouse, joystick and so on). Using this knowledge (and the tools mentioned below) you too can create your very own input device be it a keyboard, joystick or even something like <a href="https://hakshop.myshopify.com/collections/usb-rubber-ducky">Hak5&#8217;s Rubber Ducky</a>.</p>
<p>I will cover:</p>
<ul>
<li>What software and hardware is required</li>
<li>How to use the software in a Windows 7 64-bit environment (should be the same in other versions of Windows as well)</li>
<li>Resources for firmware</li>
<li>What to do when things go wrong</li>
</ul>
<p>I will be using an <a href="http://arduino.cc/en/Main/ArduinoBoardUno">Arduino Uno R3 (non-SMD)</a> which features an Atmega16U2 (small chip by the USB connection) and Atmega 328P (larger chip). The steps below may vary if your board is different but the process overall will be approximately the same. I would <strong>strongly encourage</strong> you to read through to the end of the article before connecting your board and following the steps to decrease the risks to your sanity (and Arduino board).</p>
<p>This first post will get you all set up with the software and hardware you will need. Let&#8217;s get started!</p>
<h3>You will need</h3>
<p>This tutorial&#8217;s aim is to give you an idea of the process which you will need to follow to be able to flash your Arduino with new firmware. As your projects develop you will find you require more hardware (and possibly software) than is mentioned below.</p>
<p><span style="text-decoration: underline;"><strong>Hardware</strong></span></p>
<ul>
<li>Arduino board (I am using an Arduino Uno R3)</li>
<li>USB Cable (to connect your board to the computer)</li>
<li>Header jumper (or wire to connect two headers)</li>
</ul>
<p><span style="text-decoration: underline;"><strong>Software</strong></span></p>
<ul>
<li>Arduino IDE (install from <a href="http://arduino.cc/en/Main/Software">from Arduino.cc</a>)</li>
<li>DFU Programmer
<ul>
<li>Windows: install from <a href="http://www.atmel.com/tools/flip.aspx">Atmel FLIP</a></li>
<li>Linux: <code>sudo apt-get install dfu-programmer</code></li>
</ul>
</li>
<li><a href="https://github.com/arduino/Arduino/tree/master/hardware/arduino/firmwares">Arduino firmware</a> (so you can restore your board to function as an Arduino)</li>
<li>Firmware for the device you want to emulate; some examples <a href="https://github.com/harlequin-tech/arduino-usb/tree/master/firmwares">here</a></li>
<li>Arduino sketch with the logic for your peripheral (you can skip this for this tutorial</li>
</ul>
<p>The next post in this series will cover flashing your Arduino board with the new firmware.</p>
]]></content:encoded>
							<wfw:commentRss>https://www.dannyvacar.ca/blog/flashing-your-arduinos-firmware-part-1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
							</item>
		<item>
		<title>Steamed Microsoft Flight Simulator X</title>
		<link>https://www.dannyvacar.ca/blog/steamed-microsoft-flight-simulator-x/</link>
				<comments>https://www.dannyvacar.ca/blog/steamed-microsoft-flight-simulator-x/#respond</comments>
				<pubDate>Sun, 27 Jul 2014 12:02:13 +0000</pubDate>
		<dc:creator><![CDATA[Danny]]></dc:creator>
				<category><![CDATA[Flight Simulation]]></category>
		<category><![CDATA[FSX]]></category>
		<category><![CDATA[Microsoft Flight Simulator]]></category>
		<category><![CDATA[Steam]]></category>

		<guid isPermaLink="false">http://www.dannyvacar.ca/blog/?p=2223</guid>
				<description><![CDATA[News broke earlier this month that Dovetail games, makers of popular train simulators, had been granted &#8220;a global licensing deal with Microsoft, granting them the rights to develop and publish all-new flight products based on Microsoft’s genre-defining flight technology&#8221;, Microsoft Flight Simulator X (FSX). The company will be &#8220;investigating new concepts in this area and ... <span class="more"><a class="more-link" href="https://www.dannyvacar.ca/blog/steamed-microsoft-flight-simulator-x/">[Read more...]</a></span>]]></description>
								<content:encoded><![CDATA[<p><a href="http://www.dovetailgames.com/news/2014/jul/9/dovetail-games-licensing-deal-with-microsoft-takes-flight">News broke earlier this month</a> that Dovetail games, makers of popular train simulators, had been granted &#8220;a global licensing deal with Microsoft, granting them the rights to develop and publish all-new flight products based on Microsoft’s genre-defining flight technology&#8221;, Microsoft Flight Simulator X (FSX). The company will be &#8220;investigating new concepts in this area and is expecting to bring a release to market in 2015.&#8221; More recently it was announced that <a href="http://www.flight1.com/">Flight1 </a>has partnered with Dovetail games and the companies &#8220;<a href="http://www.dovetailgames.com/news/2014/jul/25/dovetail-games-flight1-software-partner-for-fsx-launch-on-steam">will be working in partnership [&#8230;] for the launch.</a>&#8221;</p>
<p>The initial goal for the FSX franchise is to distribute it via <a href="http://store.steampowered.com">Steam</a>, Valve&#8217;s digital distribution platform. FSX&#8217;s main competitor X-Plane has been <a href="http://www.x-plane.com/2014/07/x-plane-10-is-coming-to-steam/">recently made available</a> over <a href="http://store.steampowered.com/app/292180/">Steam</a>.</p>
<p align="center"><a href="http://en.wikipedia.org/wiki/File:FSX_Cover.jpg#mediaviewer/File:FSX_Cover.jpg"><img alt="FSX Cover.jpg" src="https://upload.wikimedia.org/wikipedia/en/f/fb/FSX_Cover.jpg"></a><br />&#8220;<a href="http://en.wikipedia.org/wiki/File:FSX_Cover.jpg#mediaviewer/File:FSX_Cover.jpg">FSX Cover</a>&#8221; by May be found at the following website: <a rel="nofollow" class="external text" href="http://www.gamefaqs.com/pc/931252-microsoft-flight-simulator-x/images/box-72337">GameFAQs</a>. Licensed under <a title="<a href=&quot;//en.wikipedia.org/wiki/Wikipedia:Non-free_use_rationale_guideline&quot; title=&quot;Wikipedia:Non-free use rationale guideline&quot;>Fair use</a> of copyrighted material in the context of <a href=&quot;//en.wikipedia.org/wiki/Microsoft_Flight_Simulator_X&quot; title=&quot;Microsoft Flight Simulator X&quot;>Microsoft Flight Simulator X</a>&#8221; href=&#8221;//en.wikipedia.org/wiki/File:FSX_Cover.jpg&#8221;>Fair use</a> via <a href="//en.wikipedia.org/wiki/">Wikipedia</a>.</p>
<h2>What I expect from the first release</h2>
<p>The points below are my best guesses and in most cases things I wish not to see in this new release.</p>
<ul>
<li>Bugs. Lots of bugs. FSX was first released in 2006 and both software and hardware has come a long way since then. The issues you can expect to encounter are well documented on flight sim forums so support will be available. The question is: Will Steam&#8217;s users accept FSX in this state?</li>
<li> Integrated micro-transactions. The train simulator industry is well-known for having multiple add-ons. In one way the flight sim community is well-accustomed to paying for add-ons. We will now see FSX add-ons in the Steam store.</li>
<li>It will be interesting to see how the pricing scheme is set. Those of us who enjoy FSX already own a well-customized copy so we are unlikely to buy it again from Steam. Drawing new users will be the big challenge.</li>
<li>No updates to the multiplayer mode. Currently if you want to fly with your friends in FSX you have to join via IP. I don&#8217;t expect this to change in the first release although it is something which needs to be addressed sooner rather than later to ensure FSX:Steam&#8217;s success.</li>
</ul>
<h2>What I don&#8217;t want to see</h2>
<ul>
<li> Closed ecosystem. Currently one can download add-ons of all kinds from a<a href="http://www.flightsim.com/"> number</a> <a href="http://simviation.com">of different</a> <a href="http://www.fs-freeware.net/">sites</a> and install them directly into FSX. With the Steam integration and partnership with Flight1 it would be a shame to be forced to buy all add-ons from Steam or Flight1 and not be able to take advantage of the wide array of add-ons already available.</li>
<li>No improvements to the core software. This is a big one for me. FSX has remained the unoptimized piece of software it was when it was released eight years ago. In the mean time CPUs have gained more cores, RAM capacity has increased and GPUs have improved in leaps and bounds. While updating the core software will not have any flashy results, it is sorely needed if Dovetail wishes FSX to remain as popular as it is now. Its competition benefits from the technological advances made over the last eight years and so should FSX.</li>
</ul>
<p>All-in-all I am excited to see FSX being developed again. It will be interesting to see what improvements the first release, slated for 2015, will bring to the table and how Dovetail will update FSX to today&#8217;s standards.</p>
]]></content:encoded>
							<wfw:commentRss>https://www.dannyvacar.ca/blog/steamed-microsoft-flight-simulator-x/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
							</item>
		<item>
		<title>F18 final checks before catapult</title>
		<link>https://www.dannyvacar.ca/blog/f18-final-checks-before-catapult/</link>
				<comments>https://www.dannyvacar.ca/blog/f18-final-checks-before-catapult/#respond</comments>
				<pubDate>Tue, 08 Jul 2014 02:18:32 +0000</pubDate>
		<dc:creator><![CDATA[Danny]]></dc:creator>
				<category><![CDATA[Flying]]></category>
		<category><![CDATA[Video]]></category>
		<category><![CDATA[carrier]]></category>
		<category><![CDATA[catapult]]></category>
		<category><![CDATA[f18]]></category>

		<guid isPermaLink="false">http://www.dannyvacar.ca/blog/?p=2215</guid>
				<description><![CDATA[Watch an F-18 go through its final checks before being catapulted from the USS George H. W. Bush:]]></description>
								<content:encoded><![CDATA[<p>Watch an F-18 go through its final checks before being catapulted from the USS George H. W. Bush:</p>
<p><iframe width="480" height="360" src="//www.youtube.com/embed/R0Kvl4P9ROk" frameborder="0" allowfullscreen></iframe></p>
]]></content:encoded>
							<wfw:commentRss>https://www.dannyvacar.ca/blog/f18-final-checks-before-catapult/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
							</item>
		<item>
		<title>Germany Food Diary #7 Paparazzi Restaurant</title>
		<link>https://www.dannyvacar.ca/blog/germany-food-diary-7-paparazzi-restaurant/</link>
				<pubDate>Mon, 23 Jul 2012 12:37:00 +0000</pubDate>
		<dc:creator><![CDATA[Danny]]></dc:creator>
				<category><![CDATA[Germany]]></category>
		<category><![CDATA[Aachen]]></category>
		<category><![CDATA[Bitburger]]></category>
		<category><![CDATA[Food]]></category>
		<category><![CDATA[Germany Food]]></category>
		<category><![CDATA[Gorgonzola]]></category>
		<category><![CDATA[Paparazzi]]></category>
		<category><![CDATA[Paulaner]]></category>
		<category><![CDATA[Pizza]]></category>

		<guid isPermaLink="false">http://www.dannyvacar.ca/blog/?p=2159</guid>
				<description><![CDATA[I’m closing closing off the Germany food diary for now with a return visit to Paparazzi Restaurant. I have enjoyed the restaurants but they definitely have been taking their toll on my waist line. Paparazzi Restaurant I started this visit with a large Bitburger and something I have never had before: Gorgonzola Fritto (Fried Gorgonzola; ... <span class="more"><a class="more-link" href="https://www.dannyvacar.ca/blog/germany-food-diary-7-paparazzi-restaurant/">[Read more...]</a></span>]]></description>
								<content:encoded><![CDATA[<p>I’m closing closing off the <a href="http://www.dannyvacar.ca/blog/tag/germany-food/">Germany food diary</a> for now with a return visit to <a href="http://www.dannyvacar.ca/blog/germany-food-diary-4-paparazzi-restaurant/">Paparazzi Restaurant</a>. I have enjoyed the restaurants but they definitely have been taking their toll on my waist line.</p>
<h3>Paparazzi Restaurant</h3>
<p>I started this visit with a large Bitburger</p>
<p><a title="Bitburger by Flying Dan, on Flickr" href="http://www.flickr.com/photos/60862138@N03/7473293196/"><img style="display: block; float: none; margin-left: auto; margin-right: auto" alt="Bitburger" src="http://farm9.staticflickr.com/8023/7473293196_95c822e8bf.jpg" width="375" height="500"></a></p>
<p>and something I have never had before: Gorgonzola Fritto (Fried Gorgonzola; this was actually a double-whammy since I had never had Gorgonzola before either).</p>
<p><a title="Gorgonzola Fritto by Flying Dan, on Flickr" href="http://www.flickr.com/photos/60862138@N03/7473294300/"><img style="display: block; float: none; margin-left: auto; margin-right: auto" alt="Gorgonzola Fritto" src="http://farm9.staticflickr.com/8148/7473294300_66e10cdc63.jpg" width="500" height="375"></a></p>
<p>It was absolutely delicious! I found it salty and the flavour was overwhelming at times but the beer did well to counter that. After the appetizer I decided to enjoy another German beer with a more Bavarian background, a <a href="http://en.wikipedia.org/wiki/Paulaner">Paulaner</a> Dark</p>
<p><a title="Paulaner Dark by Flying Dan, on Flickr" href="http://www.flickr.com/photos/60862138@N03/7473295516/"><img style="display: block; float: none; margin-left: auto; margin-right: auto" alt="Paulaner Dark" src="http://farm9.staticflickr.com/8002/7473295516_e8375cae4d.jpg" width="375" height="500"></a></p>
<p>It had a hint of banana in its flavour but it went down smooth as I waited for my main course, Pizza Parma e Rucola.</p>
<p><a title="PIzza Parma e Rucola by Flying Dan, on Flickr" href="http://www.flickr.com/photos/60862138@N03/7473296652/"><img style="display: block; float: none; margin-left: auto; margin-right: auto" alt="PIzza Parma e Rucola" src="http://farm9.staticflickr.com/8162/7473296652_9f92680a4c.jpg" width="500" height="375"></a></p>
<p>According to the menu the pizza was topped with pressed ham and “rockets” so I had no clue what to expect. I was very pleasantly surprised as the pizza was extremely delicious. I finished off the meal as I usually do when at Paparazzi’s, with a Limoncello.</p>
<p>As you can probably tell, I am a big fan of Paparazzi’s and expect to be back quite a few times in the future.</p>
]]></content:encoded>
										</item>
		<item>
		<title>Ciao, Germany! Gutten tag, Italy!</title>
		<link>https://www.dannyvacar.ca/blog/ciao-germany-gutten-tag-italy/</link>
				<pubDate>Fri, 20 Jul 2012 14:00:00 +0000</pubDate>
		<dc:creator><![CDATA[Danny]]></dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[Italy]]></category>
		<category><![CDATA[Jersey Shore]]></category>
		<category><![CDATA[RyanAir]]></category>
		<category><![CDATA[The Godfather]]></category>

		<guid isPermaLink="false">http://www.dannyvacar.ca/blog/?p=2167</guid>
				<description><![CDATA[I’m spending the weekend in Italy and I am meeting my girlfriends family for the first time and attending a wedding. I’ve been preparing for this trip by watching enjoying The Godfather&#160; and catching up with everyone’s favourite MTV-made celebrities, the Jersey Shore crew. I am flying out of Frankfurt-Hahn airport on the European airline ... <span class="more"><a class="more-link" href="https://www.dannyvacar.ca/blog/ciao-germany-gutten-tag-italy/">[Read more...]</a></span>]]></description>
								<content:encoded><![CDATA[<p>I’m spending the weekend in Italy and I am meeting my girlfriends family for the first time and attending a wedding. I’ve been preparing for this trip by <strike>watching</strike> enjoying <a href="http://en.wikipedia.org/wiki/The_Godfather">The Godfather</a>&nbsp;</p>
<p><img style="background-image: none; border-right-width: 0px; padding-left: 0px; padding-right: 0px; display: block; float: none; border-top-width: 0px; border-bottom-width: 0px; margin-left: auto; border-left-width: 0px; margin-right: auto; padding-top: 0px" title="The Godfather movie poster" border="0" alt="The Godfather movie poster" src="http://www.dannyvacar.ca/blog/wp-content/uploads/godfather.jpg" width="304" height="426"></p>
<p>and catching up with everyone’s favourite MTV-made celebrities, the <a href="http://en.wikipedia.org/wiki/Jersey_Shore_(TV_series)">Jersey Shore</a> crew. </p>
<p>I am flying out of Frankfurt-Hahn airport on the European airline folks <a href="http://en.wikipedia.org/wiki/Ryanair#Customer_service">love to hate</a>, RyanAir. It will definitely be an interesting experience flying with them. In the information email I received after booking my ticket they informed me that if I don’t bring a printed copy of the boarding pass they will gladly re-issue it for 60€. My whole return-flight costs around 180€.</p>
<p>In bocca al luppo!</p>
]]></content:encoded>
										</item>
		<item>
		<title>Germany Food Diary #6: Verano Restaurant</title>
		<link>https://www.dannyvacar.ca/blog/germany-food-diary-6-verano-restaurant/</link>
				<pubDate>Fri, 20 Jul 2012 12:00:00 +0000</pubDate>
		<dc:creator><![CDATA[Danny]]></dc:creator>
				<category><![CDATA[Germany]]></category>
		<category><![CDATA[Aachen]]></category>
		<category><![CDATA[Food]]></category>
		<category><![CDATA[Germany Food]]></category>
		<category><![CDATA[Verano Restaurant]]></category>

		<guid isPermaLink="false">http://www.dannyvacar.ca/blog/?p=2146</guid>
				<description><![CDATA[While I’m in Europe I will be trying to take in as many of the culinary delights as I can. I’m cataloguing these experiences in my Germany Food Diary series to start but plan to expand in the future. Verano Restaurant The second Italian style restaurant I found walking the streets of Aachen is Verano ... <span class="more"><a class="more-link" href="https://www.dannyvacar.ca/blog/germany-food-diary-6-verano-restaurant/">[Read more...]</a></span>]]></description>
								<content:encoded><![CDATA[<p>While I’m in Europe I will be trying to take in as many of the culinary delights as I can. I’m cataloguing these experiences in my <a href="http://www.dannyvacar.ca/blog/tag/germany-food/">Germany Food Diary series</a> to start but plan to expand in the future.</p>
<h3>Verano Restaurant</h3>
<p>The second Italian style restaurant I found walking the streets of Aachen is <a href="http://www.verano-aachen.de/">Verano Restaurant</a>.</p>
<p><a title="Verano Restaurant by Flying Dan, on Flickr" href="http://www.flickr.com/photos/60862138@N03/7456305560/"><img style="display: block; float: none; margin-left: auto; margin-right: auto" alt="Verano Restaurant" src="http://farm8.staticflickr.com/7268/7456305560_0795aae52f.jpg" width="500" height="375"></a></p>
<p>It is very nicely decorated outside and in.</p>
<p><a title="Verano Restaurant by Flying Dan, on Flickr" href="http://www.flickr.com/photos/60862138@N03/7456423196/"><img style="display: block; float: none; margin-left: auto; margin-right: auto" alt="Verano Restaurant" src="http://farm8.staticflickr.com/7120/7456423196_2f5590b1bb.jpg" width="500" height="87"></a></p>
<p><a title="Verano restaurant by Flying Dan, on Flickr" href="http://www.flickr.com/photos/60862138@N03/7456301214/"><img style="display: block; float: none; margin-left: auto; margin-right: auto" alt="Verano restaurant" src="http://farm8.staticflickr.com/7248/7456301214_d488bb5387.jpg" width="500" height="375"></a></p>
<p>My experience with appetizers has been that they are usually large enough to be a meal themselves so I decided to skip it this time. I was pleasantly surprised by the starters provided</p>
<p><a title="Delicious appetizers by Flying Dan, on Flickr" href="http://www.flickr.com/photos/60862138@N03/7456303060/"><img style="display: block; float: none; margin-left: auto; margin-right: auto" alt="Delicious appetizers" src="http://farm8.staticflickr.com/7133/7456303060_93dc6befd7.jpg" width="500" height="375"></a></p>
<p>A basket of warm bread coupled with a plate with <strong>eggplant spread</strong> (mmm delicious), sour cream, butter with herbs, diced tomatoes and pickled hot peppers. The salad pictured came with my entre, <em>Pfefferrahmschnitzel (schnitzel with pepper sauce)</em>.</p>
<p><a title="Schweineschnitzel Pfeffer by Flying Dan, on Flickr" href="http://www.flickr.com/photos/60862138@N03/7456304160/"><img style="display: block; float: none; margin-left: auto; margin-right: auto" alt="Pfefferrahmschnitzel" src="http://farm9.staticflickr.com/8006/7456304160_419ddf3fed.jpg" width="500" height="375"></a></p>
<p>The food was delicious and timely and the service very friendly. The restaurant is also located next to the ice cream parlour where I had <a href="http://www.dannyvacar.ca/blog/ice-cream-for-a-hot-day/">my first ice cream in Germany</a>. I will definitely be heading over to Verano’s in the future!</p>
]]></content:encoded>
										</item>
		<item>
		<title>Germany Food Diary #5: Pomm&#8217;P&#246;s</title>
		<link>https://www.dannyvacar.ca/blog/germany-food-diary-5-pommps/</link>
				<pubDate>Mon, 16 Jul 2012 12:00:00 +0000</pubDate>
		<dc:creator><![CDATA[Danny]]></dc:creator>
				<category><![CDATA[Germany]]></category>
		<category><![CDATA[Aachen]]></category>
		<category><![CDATA[Food]]></category>
		<category><![CDATA[Germany Food]]></category>
		<category><![CDATA[PommPos]]></category>
		<category><![CDATA[potato]]></category>
		<category><![CDATA[schnitzel]]></category>

		<guid isPermaLink="false">http://www.dannyvacar.ca/blog/?p=2138</guid>
				<description><![CDATA[My Germany Food diary series is a way for me to share the culinary delights I’ve been experiencing while in Aachen. Read the other entries by following this link. Pomm&#8217;Pös Pomm&#8217;Pös&#8217;s tagline is “Rund dem kartofeln” or “Around the potato” and boy it’s not kidding. Its menu is full of potato-based dishes and they even ... <span class="more"><a class="more-link" href="https://www.dannyvacar.ca/blog/germany-food-diary-5-pommps/">[Read more...]</a></span>]]></description>
								<content:encoded><![CDATA[<p>My Germany Food diary series is a way for me to share the culinary delights I’ve been experiencing while in Aachen. Read the other entries by following <a href="http://www.dannyvacar.ca/blog/tag/germany-food/">this link</a>.</p>
<h3>Pomm&#8217;Pös</h3>
<p>Pomm&#8217;Pös&#8217;s tagline is “Rund dem kartofeln” or “Around the potato” and boy it’s not kidding. Its menu is full of potato-based dishes and they even have them as appetizers. I started with a <em>baked potato with sour cream with herbs</em>.</p>
<p><a title="Baked potato by Flying Dan, on Flickr" href="http://www.flickr.com/photos/60862138@N03/7456294898/"><img style="display: block; float: none; margin-left: auto; margin-right: auto" alt="Baked potato" src="http://farm8.staticflickr.com/7275/7456294898_0b2bf277b6.jpg" width="500" height="375"></a></p>
<p>Surprisingly it came very tightly wrapped in aluminum foil with the sour cream covering the cut where the spoon was embedded. It was a bit difficult to open and once I got to the insides, quite plain. Luckily the main course, Schnitzel with fried onions and mushrooms was tastier.</p>
<p><a title="Schnitzel with fried mushrooms and onions by Flying Dan, on Flickr" href="http://www.flickr.com/photos/60862138@N03/7456296038/"><img style="display: block; float: none; margin-left: auto; margin-right: auto" alt="Schnitzel with fried mushrooms and onions" src="http://farm8.staticflickr.com/7271/7456296038_076264f16a.jpg" width="500" height="375"></a></p>
<p>As expected from a place whose motto is “Around the potato” the amount of fries was ample. The salad (top left) was a mixture of carrot shavings, cucumber and corn on top of a creamy coleslaw.</p>
<p>The food was decent and the service ok but next time I’ll make sure to not start with a baked potato as an appetizer. It just doesn’t go well.</p>
]]></content:encoded>
										</item>
	</channel>
</rss>
