i2c_bb/test/inc/mock_ftdi.h
2019-07-25 13:33:01 +02:00

15 lines
435 B
C

#ifndef __MOCK_FTDI_H__
#define __MOCK_FTDI_H__
#include <fff.h>
DEFINE_FFF_GLOBALS;
DECLARE_FAKE_VALUE_FUNC(int, gpio_open, const struct gpio_sys *);
DECLARE_FAKE_VALUE_FUNC(int, gpio_close, const struct gpio_sys *);
DECLARE_FAKE_VALUE_FUNC(int, gpio_read, const struct gpio_sys *);
DECLARE_FAKE_VALUE_FUNC(int, gpio_write, const struct gpio_sys *, int);
DECLARE_FAKE_VALUE_FUNC(int, gpio_toggle, const struct gpio_sys *);
#endif