Skip to content

[PXCT-328] OPAMP Library API #2340

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 5 commits into
base: main
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fix Linter
  • Loading branch information
pedromsousalima committed Dec 19, 2024
commit 87e5856be090b494a8c333505d9e19f8dbe8c812
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ More information on implementation can be found [here](https://docs.arduino.cc/t

Initializes the default op-amp channel. You can specify the speed mode as either high-speed or low-speed. If no speed mode is specified, the op-amp will default to high-speed mode.

#### Parameters
**Parameters**

`speed` (optional): The speed mode of the op-amp. Options are:
- `OPAMP_SPEED_LOWSPEED`
Expand All @@ -35,7 +35,7 @@ Initializes the default op-amp channel. You can specify the speed mode as either
### `bool isRunning(uint8_t channel)`
Checks whether a specific op-amp channel is currently running.

#### Parameters
**Parameters**
- `channel`: The channel number to check (0 to 3).

#### Returns
Expand All @@ -48,7 +48,7 @@ Deactivates all op-amp channels.
### `void end(uint8_t channel_mask)`
Deactivates specified op-amp channels.

#### Parameters
**Parameters**
- `channel_mask`: A bitmask specifying which channels to deactivate.

## Example Usage
Expand Down
Loading