Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

https://github.com/OpenBCI/OpenBCI_Cyton_Library

Repository for OpenBCI Cyton Arduino Libraries
https://github.com/OpenBCI/OpenBCI_Cyton_Library

cyton firmware library openbci

Last synced: about 18 hours ago
JSON representation

Repository for OpenBCI Cyton Arduino Libraries

Lists

README

        

[![Stories in Ready](https://badge.waffle.io/OpenBCI/OpenBCI_32bit_Library.png?label=ready&title=Ready)](https://waffle.io/OpenBCI/OpenBCI_32bit_Library)
# OpenBCI 32bit Library

The official library for the OpenBCI 32bit Board.

## Table of Contents:

1. [Minimums](#minimums)
2. [Installing](#installing)
3. [Upgrading](#upgrading)
4. [Downgrading](#downgrading)
3. [General Overview](#generalOverview)
1. [Includes](#includes)
2. [setup()](#setup)
3. [loop()](#loop)
4. [System Overview](#systemOverview)
5. [Reference Guide](#referenceGuide)
1. [Functions](#functions)
2. [Enums](#enums)

## Minimums:

You just opened your OpenBCI (congrats!) and want to get started programming the firmware right now?! Ok, ok do the following minimums!
1. Install the dongle drivers [from FTDI](http://www.ftdichip.com/FTDrivers.htm) for your operating system.
2. Download the latest Arduino IDE software from the [Arduino site](www.arduino.cc)
3. Follow the 2nd installation method "Manual install by copying ZIP file" to install the latest chipKIT-core hardware files from the [chipKIT-core wiki](http://chipkit.net/wiki/index.php?title=ChipKIT_core)

## Installing:

1. Download this repository zip or clone this repo (we clone directly into the `libraries` folder for development)
2. Download [OpenBCI_32bit_SD](https://github.com/OpenBCI/OpenBCI_32bit_SD)
3. Move both of the folders into your `libraries` folder (please make a folder in Arduino named libraries if you don't have one)
* Mac OSX: User/Documents/Arduino/libraries
* Windows: /My Documents/Arduino/libraries
4. Restart Arduino IDE
5. Open `DefaultBoard.ino` for a full featured example.
6. Hack and make awesome stuff!

## Upgrading:

Checkout the [upgrade guide](./UPGRADE_GUIDE.md)!

## Downgrading:

Have a bunch of custom firmware based on the original firmware? Have no fear for previous releases are [here](https://github.com/OpenBCI/OpenBCI_32bit_Library/releases) and [here for the radios if needed](https://github.com/OpenBCI/OpenBCI_Radios/releases).

## General Overview:

Your needs dictate what you need to include! This saves a ton of precious memory space!

### Includes:

#### Default OpenBCI with SD Card Functionality

In order to use the SD card write functionality, you must not only include the file `SD_Card_Stuff.ino` located in examples/DefaultBoard, you must include the following:

Headers:
```Arduino
#include
#include
#include
#include
#include
```

Variables used by `SD_Card_Stuff.ino`:
```Arduino
boolean addAccelToSD = false;
boolean addAuxToSD = false;
boolean SDfileOpen = false;
```

#### Bare OpenBCI Board with no SD card

Headers:
```Arduino
#include
#include
#include
```

You do not need to declare any variables...

### setup():

#### Accel (default)
```Arduino
void setup() {
board.begin(); // Bring up the OpenBCI Board
// The board will use accel data by default
}
```

#### Aux
```Arduino
void setup() {
board.begin(); // Bring up the OpenBCI Board
board.useAccel(false); // Notify the board we want to use aux data, this effects `::sendChannelData()`
}
```

### loop():

We will start with the basics here, and work our way up... The loop function can be thought of as the meat and core executor of the OpenBCI_32bit_Library functionality. Keep in mind the main purpose of this library is to stream data from the ADS1299 to the computer, that's our focus, everything takes a back seat to that.

A bare board, not using the SD, accel, or aux data must have the following:
```Arduino
void loop() {
board.loop();
if (board.streaming) {
if (board.channelDataAvailable) {
// Read from the ADS(s), store data, set channelDataAvailable flag to false
board.updateChannelData();

board.sendChannelData();
}
}

// Check the serial port for new data
if (board.hasDataSerial0()) {
// Read one char and process it
board.processChar(board.getCharSerial0());
}
}
```
The first `if` statement is only `true` if a `b` command is ran through the `processChar` function. The next `if` statement exploits a `volatile` interrupt driven `boolean` called `channelDataAvailable`. This interrupt driven system is new as of firmware version 2.0.0 a discussion of it can be [found here](https://github.com/OpenBCI/OpenBCI_32bit_Library/issues/22). If the ADS1299 has signaled to the Board new data is ready, the function `updateChannelData()` is executed. This function will grab new data from the Board's ADS1299 (and from the daisy's ADS1299) and store that data to the arrays: `lastBoardDataRaw`, `boardChannelDataRaw`, `meanBoardDataRaw`, `lastDaisyDataRaw`, `daisyChannelDataRaw`, `meanDaisyDataRaw`, which can be accessed to drive filters or whatever your heart desires.

## System Overview:

### Sending Channel Data
In the OpenBCI system, and with most wireless systems, we are restricted by the rate at which we can send data.

If you send a packet from the Pic32 to the Device RFduino and you start it with `0x41`, write 31 bytes, and follow with `0xCX` (where `X` can be `0-F` hex) then the packet will immediately be sent from the Device radio. This is counter to how if you want to send a message longer than 31 bytes (takes over two packets to transmit from Device radio to Host radio (Board to Dongle)) then you simply write the message, and that message will be sent in a multipacket format that allows it to be reassembled on the Dongle. This reassembling of data is critical to over the air programming.

# Reference Guide:

## Functions:

### accelHasNewData()

Reads a status register to see if there is new accelerometer data.

**_Returns_** {boolean}

`true` if the accelerometer has new data.

### accelUpdateAxisData()

Reads from the accelerometer to get new X, Y, and Z data. Updates the global array `axisData`.

### begin()

The function the OpenBCI board will call in `setup()`.

### beginDebug()

The function the OpenBCI board will call in setup. Turns sniff mode on and allows you to tap into the serial port that is broken out on the OpenBCI 32bit board.

You must alter `Board_Defs.h` file located:

On Mac:
`/Users/username/Documents/Arduino/hardware/chipkit-core/pic32/variants/openbci/Board_Defs.h`
On Windows:

`C:\Users\username\Documents\Arduino\hardware\chipkit-core\pic32\variants\openbci\Board_Defs.h`

Specifically lines `311` and `313`, change `7` and `10` to `11` and `12` for `_SER1_TX_PIN` and `_SER1_RX_PIN` respectively. Check out this sweet gif if you are a visual person http://g.recordit.co/3jH01sMD6Y.gif

You will need to reflash your board! But now you can connect to pins `11` (`TX`) and `12` (`RX`) via any 3V3 serial to USB driver. Remember to use 3V3, 115200 baud, and have a common ground!

### hasDataSerial0()

Called in every `loop()` and checks `Serial0`.

**_Returns_** {boolean}

`true` if there is data ready to be read.

### hasDataSerial1()

Called in every `loop()` and checks `Serial1`.

**_Returns_** {boolean}

`true` if there is data ready to be read.

### processChar(character)

Process one char at a time from serial port. This is the main command processor for the OpenBCI system. Considered mission critical for normal operation.

**_character_** {char}

The character to process.

**_Returns_** {boolean}

`true` if the command was recognized, `false` if not.

### getCharSerial0()

If `hasDataSerial0()` is `true` then this function is called. Reads from `Serial0` first and foremost, which comes from the RFduino. If no data is available then returns a `0x00` which is NOT a command that the system will recognize as a safe guard.

**_Returns_** {char}

The character from the serial port.

### getCharSerial1()

If `hasDataSerial1()` is `true` then this function is called. Reads from `Serial1` which comes from the external serial port. If no data is available then returns a `0x00` which is NOT a command that the system will recognize as a safe guard.

**_Returns_** {char}

The character from the serial port.

### sendChannelData()

Writes channel data, aux data, and footer to serial port or over wifi. Based on global variables `useAux` and `useAccel` Must keep for portability.

If `curAccelMode` is ACCEL_MODE_OFF then then sends data from `auxData` array and sets the contents of `auxData` to `0` after send. `board.useAccel(false)`
If `curAccelMode` is ACCEL_MODE_ON then then sends data from `axisData` array and sets the contents of `axisData` to `0` after send. `board.useAccel(true)`

### updateChannelData()

Called when the board ADS1299 has new data available. If there is a daisy module attached, that data is also fetched here.

## ENUMS:

### BOARD_MODE

Board mode changes the hardware pins.

#### BOARD_MODE_DEFAULT

`0` - Board will operate leave all pins in default mode.

#### BOARD_MODE_DEBUG

`1` - Board will output serial debug data out of the external serial port.

#### BOARD_MODE_ANALOG

`2` - Board will read from `A6` (`D11`), `A7` (`D12`), and `A8` (`D13`). `A8` is only is use when there is no wifi present. The analog to digital converter is 10bits and the data will be in .

|Pin|Aux Bytes|Notes|
|----|----|----|
|`A6`|0:1|`D11`|
|`A7`|2:3|`D12`|
|`A8`|4:5|`D13` - If wifi not present|

#### BOARD_MODE_DIGITAL

`3` - Board will read from `D11`, `D12`, `D13` (if wifi not present), `D17`, and `D18` (if wifi not present).

|Pin|Aux Byte|Notes|
|----|----|----|
|`D11`|0||
|`D11`|1||
|`D13`|2|If wifi not present|
|`D17`|3||
|`D18`|4|If wifi not present|

### PACKET_TYPE

#### PACKET_TYPE_ACCEL

`0` - End of standard stream packet.

#### PACKET_TYPE_RAW_AUX

`1` - End of stream packet with raw packet.

#### PACKET_TYPE_USER_DEFINED

`2` - End of stream packet, user defined.

#### PACKET_TYPE_ACCEL_TIME_SET

`3` - End of time sync up with accelerometer stream packet.

#### PACKET_TYPE_ACCEL_TIME_SYNC

`4` - End of time synced stream packet.

#### PACKET_TYPE_RAW_AUX_TIME_SET

`5` - End of time sync up stream packet.

#### PACKET_TYPE_RAW_AUX_TIME_SYNC

`6` - End of time synced stream packet.

### SAMPLE_RATE

#### SAMPLE_RATE_16000

`0` - Sample rate 16000Hz

#### SAMPLE_RATE_8000

`1` - Sample rate 8000Hz

#### SAMPLE_RATE_4000

`2` - Sample rate 4000Hz

#### SAMPLE_RATE_2000

`3` - Sample rate 2000Hz

#### SAMPLE_RATE_1000

`4` - Sample rate 1000Hz

#### SAMPLE_RATE_500

`5` - Sample rate 500Hz

#### SAMPLE_RATE_250

`6` - Sample rate 250Hz