Skip to content
This repository has been archived by the owner on Oct 1, 2022. It is now read-only.

Latest commit

 

History

History
154 lines (97 loc) · 7.63 KB

SOFTWARE.md

File metadata and controls

154 lines (97 loc) · 7.63 KB

SOFTWARE

This guide describes how to install the Arduino IDE and all the libraries you will need for the F9P_RAWX_Logger.

The guide assumes you will be using Windows; the process would be slightly different under Linux or OSX.

Arduino IDE

To begin, download and install the latest version of the Arduino IDE. There are versions for Windows, Mac OS X and 32/64 bit Linux. The installation should be straight forward but there are step-by-step instructions available if you need them.

The download page will ask you if you would like to make a donation to support Arduino. Please do make a donation if you can.

I recommend using the default options and selecting "Always trust software from Arduino AG" and "Always trust software from Adafruit" when asked.

Once installation is complete, the IDE should open and display a blank sketch.

Install the Arduino and Adafruit SAMD Boards

A full guide on how to install the Arduino and Adafruit Boards is available on the Adafruit website

In summary:

  • Click on the File menu and then Preferences
  • Add https://adafruit.github.io/arduino-board-index/package_adafruit_index.json to the "Additional Boards Manager URLs" box
  • Click OK
  • Click on the Tools menu, hover over the line which says "Board" and then click on "Boards Manager"
  • Let the Boards Manager window update the list of available libraries
  • Scroll down the list until you see "Arduino SAMD Boards (32-bits ARM Cortex-M0+) by Arduino"
  • Hover over that line and click "Install"
  • Wait for the installation to complete
  • Scroll further down the list and install the "Adafruit SAMD Boards"
  • Close the Boards Manager

URLs

Boards

You may see warning messages about "skipping script execution". You can ignore these.

Now quit the IDE.

Blink

You can now connect your Adalogger board to your computer using a standard micro-USB cable. All being well, you should hear Windows acknowledge the Adalogger. It should appear as a new COM port.

Restart the IDE. It will open with the same blank sketch as before.

Click on the Tools menu and hover over the line which says "Port". All being well you should see a line which says "COM4 (Adafruit Feather M0)". The COM number may be different depending on how many devices you have attached. Click on that line.

Port

Click on the Tools menu again and hover over the line which says "Board". Use the down arrow to scroll down to the Adafruit SAMD boards. Click on the line which says "Adafruit Feather M0".

After a short delay, you should see the text in the bottom right corner of the IDE window change to "Adafruit Feather M0 on COM4".

Board

Click on the File menu and hover over the line which says "Examples". Hover over the line which says "01.Basics" and click on the entry which says "Blink".

A new IDE window should appear containing the Blink code. You can now close the IDE window that contains the blank sketch, leaving only the Blink window open.

Click on the arrow icon below the Edit menu. This will compile the blink code and upload it onto the Adalogger.

All being well, the red LED on the Adalogger should start to blink once per second.

You may notice that the Adalogger COM port number has changed. This is normal. If you have problems please refer to the Adafruit tutorial.

Now would be a good time to connect a small (~100mAh) LiPo battery to the Adalogger so it can start charging.

Libraries

We now need to install some libraries that are required by the RAWX_Logger_F9P code.

SparkFun Ublox Library

The Arduino code uses the SparkFun Ublox library to communicate with the ZED-F9P over its UART and I2C ports:

RAWX_Logger_F9P uses the Ublox library to communicate with the ZED-F9P over UART only, minimising the number of connections between the ZED-F9P and the Adalogger.

In RAWX_Logger_F9P_I2C all of the message configuration is done over I2C, leaving the UART port clear for the RAWX messages themselves. This has the significant advantage that the UBX message acknowledgements go over I2C instead of UART, meaning there is no chance of accidentally logging them with the RAWX data.

Click on the Tools menu and then click "Manage Libraries". The Library Manager window will open. Use the library manager filter text box to search for "SparkFun Ublox". Hover over the line which says "SparkFun Ublox Library" and click "Install".

RTCZero

RAWX_Logger_F9P uses the Arduino RTCZero library to set the SAMD M0 RTC.

Use the library manager filter text box to search for "RTCZero". Hover over the line which says "RTCZero by Arduino" and click "Install".

Bill Greiman's SdFat

RAWX_Logger_F9P uses Bill Greiman's SdFat to access the Adalogger micro-SD card, write data to the RAWX log file rapidly and set the create, write and access timestamps.

Use the library manager filter text box to search for "sdfat". Hover over the line which says "SdFat by Bill Greiman" and click "Install".

Adafruit NeoPixel Library

RAWX_Logger_F9P can use a NeoPixel to provide additional information during logging. You will need to install the Adafruit NeoPixel library if you want to take advantage of this. By default, the NeoPixel needs to be connected to D13 (sharing the pin with the on-board red LED).

Use the library manager filter text box to search for "Adafruit NeoPixel". Hover over the line which says "Adafruit NeoPixel Library" and click "Install".

You can now close the library manager.

Download RAWX_Logger_F9P

You can find the logger code in the Arduino folder

The best way to download the code is to clone the repository using GitHub Desktop. That way you can keep up to date with new versions.

If you don't want to do that, you can use the use the green "Clone or download" button on the main repo page to "Download ZIP" instead. It depends on which browser you are using, but you should end up with a file called RAWX_Logger_F9P-master.zip in your Downloads directory.

  • Open File Explorer (right-click on the Windows icon in the bottom left corner of your screen then click on "File Explorer")
  • Click on your "Downloads" quick access link
  • Double-click on the F9P_RAWX_Logger-master.zip file
  • Double-click on the F9P_RAWX_Logger-master folder
  • Double-click on the Arduino folder
  • Right-click on the RAWX_Logger_F9P folder and click "Copy"
  • Click on your "Documents" quick access link
  • Double-click on the "Arduino" folder
  • Right-click and select "Paste"

All being well, you should now have a Documents\Arduino\RAWX_Logger_F9P folder containing (only) RAWX_Logger_F9P.ino

In the Ardino IDE, click on the File menu and then "Open...". When the file window opens double-click on the RAWX_Logger_F9P folder and then double-click on the RAWX_Logger_F9P.ino file. The logger code will open in a new window. You can now close the Blink window.

Repeat the last four steps for the RAWX_Logger_F9P_I2C folder if you want to use the (more efficient) I2C code.