{ chip::pull::PULL_DOWN, GPIOSIM_PULL_DOWN }
};
-const ::std::map<chip_builder::hog_direction, gpiosim_direction> hog_dir_mapping = {
- { chip_builder::hog_direction::INPUT, GPIOSIM_HOG_DIR_INPUT },
- { chip_builder::hog_direction::OUTPUT_HIGH, GPIOSIM_HOG_DIR_OUTPUT_HIGH },
- { chip_builder::hog_direction::OUTPUT_LOW, GPIOSIM_HOG_DIR_OUTPUT_LOW }
+const ::std::map<chip_builder::direction, gpiosim_direction> hog_dir_mapping = {
+ { chip_builder::direction::INPUT, GPIOSIM_DIRECTION_INPUT },
+ { chip_builder::direction::OUTPUT_HIGH, GPIOSIM_DIRECTION_OUTPUT_HIGH },
+ { chip_builder::direction::OUTPUT_LOW, GPIOSIM_DIRECTION_OUTPUT_LOW }
};
const ::std::map<gpiosim_value, chip::value> value_mapping = {
::std::size_t num_lines;
::std::string label;
::std::map<unsigned int, ::std::string> line_names;
- ::std::map<unsigned int, ::std::pair<::std::string, hog_direction>> hogs;
+ ::std::map<unsigned int, ::std::pair<::std::string, direction>> hogs;
};
chip_builder::chip_builder()
return *this;
}
-chip_builder& chip_builder::set_hog(unsigned int offset, const ::std::string& name, hog_direction direction)
+chip_builder& chip_builder::set_hog(unsigned int offset, const ::std::string& name, direction direction)
{
this->_m_priv->hogs[offset] = { name, direction };
class chip_builder
{
public:
- enum class hog_direction {
+ enum class direction {
INPUT = 1,
OUTPUT_HIGH,
OUTPUT_LOW
chip_builder& set_num_lines(::std::size_t num_lines);
chip_builder& set_label(const ::std::string& label);
chip_builder& set_line_name(unsigned int offset, const ::std::string& name);
- chip_builder& set_hog(unsigned int offset, const ::std::string& name, hog_direction direction);
+ chip_builder& set_hog(unsigned int offset, const ::std::string& name, direction direction);
chip build();
#include "gpiosim.hpp"
using ::gpiosim::make_sim;
-using hog_dir = ::gpiosim::chip_builder::hog_direction;
+using hog_dir = ::gpiosim::chip_builder::direction;
using direction = ::gpiod::line::direction;
using edge = ::gpiod::line::edge;
using bias = ::gpiod::line::bias;
},
{
.name = "DIRECTION_INPUT",
- .val = GPIOSIM_HOG_DIR_INPUT,
+ .val = GPIOSIM_DIRECTION_INPUT,
},
{
.name = "DIRECTION_OUTPUT_HIGH",
- .val = GPIOSIM_HOG_DIR_OUTPUT_HIGH,
+ .val = GPIOSIM_DIRECTION_OUTPUT_HIGH,
},
{
.name = "DIRECTION_OUTPUT_LOW",
- .val = GPIOSIM_HOG_DIR_OUTPUT_LOW,
+ .val = GPIOSIM_DIRECTION_OUTPUT_LOW,
},
{ }
};
gpiosim_value_GPIOSIM_VALUE_INACTIVE as GPIOSIM_VALUE_INACTIVE,
gpiosim_value_GPIOSIM_VALUE_ACTIVE as GPIOSIM_VALUE_ACTIVE,
gpiosim_value_GPIOSIM_VALUE_ERROR as GPIOSIM_VALUE_ERROR,
- gpiosim_direction_GPIOSIM_HOG_DIR_INPUT as GPIOSIM_HOG_DIR_INPUT,
- gpiosim_direction_GPIOSIM_HOG_DIR_OUTPUT_HIGH as GPIOSIM_HOG_DIR_OUTPUT_HIGH,
- gpiosim_direction_GPIOSIM_HOG_DIR_OUTPUT_LOW as GPIOSIM_HOG_DIR_OUTPUT_LOW,
+ gpiosim_direction_GPIOSIM_DIRECTION_INPUT as GPIOSIM_DIRECTION_INPUT,
+ gpiosim_direction_GPIOSIM_DIRECTION_OUTPUT_HIGH as GPIOSIM_DIRECTION_OUTPUT_HIGH,
+ gpiosim_direction_GPIOSIM_DIRECTION_OUTPUT_LOW as GPIOSIM_DIRECTION_OUTPUT_LOW,
gpiosim_pull_GPIOSIM_PULL_UP as GPIOSIM_PULL_UP,
gpiosim_pull_GPIOSIM_PULL_DOWN as GPIOSIM_PULL_DOWN,
};
impl Direction {
fn val(self) -> gpiosim_direction {
match self {
- Direction::Input => GPIOSIM_HOG_DIR_INPUT,
- Direction::OutputHigh => GPIOSIM_HOG_DIR_OUTPUT_HIGH,
- Direction::OutputLow => GPIOSIM_HOG_DIR_OUTPUT_LOW,
+ Direction::Input => GPIOSIM_DIRECTION_INPUT,
+ Direction::OutputHigh => GPIOSIM_DIRECTION_OUTPUT_HIGH,
+ Direction::OutputLow => GPIOSIM_DIRECTION_OUTPUT_LOW,
}
}
}
struct gpiod_test_hog {
guint offset;
const gchar *name;
- GPIOSimHogDir direction;
+ GPIOSimDirection direction;
};
GVariant *
while (g_variant_iter_loop(iter, "(usi)",
&offset, &name, &vdir)) {
switch (vdir) {
- case G_GPIOSIM_HOG_DIR_INPUT:
- dir = GPIOSIM_HOG_DIR_INPUT;
+ case G_GPIOSIM_DIRECTION_INPUT:
+ dir = GPIOSIM_DIRECTION_INPUT;
break;
- case G_GPIOSIM_HOG_DIR_OUTPUT_HIGH:
- dir = GPIOSIM_HOG_DIR_OUTPUT_HIGH;
+ case G_GPIOSIM_DIRECTION_OUTPUT_HIGH:
+ dir = GPIOSIM_DIRECTION_OUTPUT_HIGH;
break;
- case G_GPIOSIM_HOG_DIR_OUTPUT_LOW:
- dir = GPIOSIM_HOG_DIR_OUTPUT_LOW;
+ case G_GPIOSIM_DIRECTION_OUTPUT_LOW:
+ dir = GPIOSIM_DIRECTION_OUTPUT_LOW;
break;
default:
g_error("Invalid hog direction value: %d",
} GPIOSimPull;
typedef enum {
- G_GPIOSIM_HOG_DIR_INPUT = 1,
- G_GPIOSIM_HOG_DIR_OUTPUT_HIGH,
- G_GPIOSIM_HOG_DIR_OUTPUT_LOW,
-} GPIOSimHogDir;
+ G_GPIOSIM_DIRECTION_INPUT = 1,
+ G_GPIOSIM_DIRECTION_OUTPUT_HIGH,
+ G_GPIOSIM_DIRECTION_OUTPUT_LOW,
+} GPIOSimDirection;
typedef struct _GPIOSimChip GPIOSimChip;
printf("Hog a line on bank #2\n");
ret = gpiosim_bank_hog_line(bank1, 3, "xyz",
- GPIOSIM_HOG_DIR_OUTPUT_HIGH);
+ GPIOSIM_DIRECTION_OUTPUT_HIGH);
if (ret) {
perror("Unable to hog a line");
return EXIT_FAILURE;
int ret, fd;
switch (direction) {
- case GPIOSIM_HOG_DIR_INPUT:
+ case GPIOSIM_DIRECTION_INPUT:
dir = "input";
break;
- case GPIOSIM_HOG_DIR_OUTPUT_HIGH:
+ case GPIOSIM_DIRECTION_OUTPUT_HIGH:
dir = "output-high";
break;
- case GPIOSIM_HOG_DIR_OUTPUT_LOW:
+ case GPIOSIM_DIRECTION_OUTPUT_LOW:
dir = "output-low";
break;
default:
};
enum gpiosim_direction {
- GPIOSIM_HOG_DIR_INPUT = 1,
- GPIOSIM_HOG_DIR_OUTPUT_HIGH,
- GPIOSIM_HOG_DIR_OUTPUT_LOW,
+ GPIOSIM_DIRECTION_INPUT = 1,
+ GPIOSIM_DIRECTION_OUTPUT_HIGH,
+ GPIOSIM_DIRECTION_OUTPUT_LOW,
};
struct gpiosim_ctx *gpiosim_ctx_new(void);
{
.offset = 3,
.name = "hog3",
- .direction = G_GPIOSIM_HOG_DIR_OUTPUT_HIGH,
+ .direction = G_GPIOSIM_DIRECTION_OUTPUT_HIGH,
},
{
.offset = 4,
.name = "hog4",
- .direction = G_GPIOSIM_HOG_DIR_OUTPUT_LOW,
+ .direction = G_GPIOSIM_DIRECTION_OUTPUT_LOW,
},
{ }
};