In order to avoid confusion and stress the fact that "value" represents
the logical state of a GPIO line, add a two-value enum with the names
"ACTIVE" and "INACTIVE" to the libgpiosim API.
Signed-off-by: Bartosz Golaszewski <brgl@bgdev.pl>
return EXIT_FAILURE;
}
- if (ret != 1) {
+ if (ret != GPIOSIM_VALUE_ACTIVE) {
fprintf(stderr, "Invalid value read\n");
return EXIT_FAILURE;
}
return ret;
if (what[0] == '0')
- return 0;
+ return GPIOSIM_VALUE_INACTIVE;
if (what[0] == '1')
- return 1;
+ return GPIOSIM_VALUE_ACTIVE;
errno = EIO;
return -1;
struct gpiosim_dev;
struct gpiosim_bank;
+enum {
+ GPIOSIM_VALUE_INACTIVE = 0,
+ GPIOSIM_VALUE_ACTIVE = 1,
+};
+
enum {
GPIOSIM_PULL_DOWN = 1,
GPIOSIM_PULL_UP,