Lines Matching refs:attributeName
126 * @param attributeName attribute mame
133 readInt(const std::string& attributeName) const
136 mraa_result_t res = mraa_iio_read_int(m_iio, attributeName.c_str(), &value);
139 oss << "IIO readInt for attibute " << attributeName << " failed";
148 * @param attributeName attribute mame
155 readFloat(const std::string& attributeName) const
158 mraa_result_t res = mraa_iio_read_float(m_iio, attributeName.c_str(), &value);
161 oss << "IIO readFloat for attibute " << attributeName << " failed";
170 * @param attributeName attribute mame
176 writeInt(const std::string& attributeName, int value) const
178 mraa_result_t res = mraa_iio_write_int(m_iio, attributeName.c_str(), value);
181 oss << "IIO writeInt for attibute " << attributeName << " failed";
190 * @param attributeName attribute mame
196 writeFloat(const std::string& attributeName, float value) const
198 mraa_result_t res = mraa_iio_write_float(m_iio, attributeName.c_str(), value);
201 oss << "IIO writeFloat for attibute " << attributeName << " failed";