Skip to content

Commit

Permalink
fixing ci
Browse files Browse the repository at this point in the history
Signed-off-by: Andrey Parfenov <a1994ndrey@gmail.com>
  • Loading branch information
Andrey1994 committed Sep 13, 2023
1 parent 9bd0961 commit 4827ff3
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions nodejs_package/brainflow/functions.types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,8 @@ export enum BoardControllerCLikeFunctions {
'int get_resistance_channels (int board_id, int preset, _Inout_ int *channels, _Inout_ int *len)',
get_magnetometer_channels =
'int get_magnetometer_channels (int board_id, int preset, _Inout_ int *channels, _Inout_ int *len)',
get_rotation_channels =
'int get_rotation_channels (int board_id, int preset, _Inout_ int *channels, _Inout_ int *len)',
get_eeg_names =
'int get_eeg_names (int board_id, int preset, _Inout_ char *eeg_names, _Inout_ int *len)',
get_device_name =
Expand Down Expand Up @@ -237,6 +239,12 @@ export class BoardControllerFunctions
otherChannels: number[],
len: number[],
) => BrainFlowExitCodes;
getRotationChannels!: (
boardId: BoardIds,
preset: BrainFlowPresets,
channels: number[],
len: number[],
) => BrainFlowExitCodes;
getTemperatureChannels!: (
boardId: BoardIds,
preset: BrainFlowPresets,
Expand Down

0 comments on commit 4827ff3

Please sign in to comment.