i2c_bb/test/unit/mock_ftdi.c

10 lines
379 B
C
Raw Normal View History

2019-07-18 14:26:03 +00:00
#include <mock_ftdi.h>
DEFINE_FFF_GLOBALS;
2019-07-25 11:33:01 +00:00
DEFINE_FAKE_VALUE_FUNC(int, gpio_open, const struct gpio_sys *);
DEFINE_FAKE_VALUE_FUNC(int, gpio_close, const struct gpio_sys *);
DEFINE_FAKE_VALUE_FUNC(int, gpio_read, const struct gpio_sys *);
DEFINE_FAKE_VALUE_FUNC(int, gpio_write, const struct gpio_sys *, int);
DEFINE_FAKE_VALUE_FUNC(int, gpio_toggle, const struct gpio_sys *);