Skip to content

Commit

Permalink
updated Swift bindings for latest version of BF
Browse files Browse the repository at this point in the history
  • Loading branch information
ScottThomasMiller committed Mar 16, 2024
1 parent c2de9da commit 8ed0bd0
Show file tree
Hide file tree
Showing 5 changed files with 156 additions and 79 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,20 +8,18 @@ import Foundation
//import BrainFlow

struct BoardDescription: Codable, Equatable {
let accel_channels: [Int32]
let ecg_channels: [Int32]
let eeg_channels: [Int32]
let eeg_names: String
let emg_channels: [Int32]
let eog_channels: [Int32]
let marker_channel: Int32
let name: String
let num_rows: Int32
let package_num_channel: Int32
let sampling_rate: Int32
let timestamp_channel: Int32

// optionals:
let accel_channels: [Int32]?
let ecg_channels: [Int32]?
let eeg_channels: [Int32]?
let eeg_names: String?
let emg_channels: [Int32]?
let eog_channels: [Int32]?
let marker_channel: Int32?
let name: String?
let num_rows: Int32?
let sampling_rate: Int32?
let battery_channel: Int32?
let eda_channels: [Int32]?
let gyro_channels: [Int32]?
Expand Down
Loading

0 comments on commit 8ed0bd0

Please sign in to comment.