You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
348 B

#pragma once
#include <stdint.h>
#include <functional>
#include "apibasic/basic.hpp"
namespace iflytop {
using namespace std;
class ZIBoard {
public:
virtual ~ZIBoard() {}
virtual int32_t board_read_ext_io(int32_t ioindex, int32_t *val) = 0;
virtual int32_t board_write_ext_io(int32_t ioindex, int32_t val) = 0;
};
} // namespace iflytop