We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5a41d7f commit a7acae5Copy full SHA for a7acae5
src/lib.rs
@@ -356,6 +356,9 @@ bitflags! {
356
const ACTIVE_LOW = (1 << 2);
357
const OPEN_DRAIN = (1 << 3);
358
const OPEN_SOURCE = (1 << 4);
359
+ const BIAS_PULL_UP = (1 << 5);
360
+ const BIAS_PULL_DOWN = (1 << 6);
361
+ const BIAS_DISABLE = (1 << 7);
362
}
363
364
@@ -385,6 +388,9 @@ bitflags! {
385
388
386
389
387
390
391
392
393
394
395
396
0 commit comments