RISC-V/pwm/oneway.h
2024-03-01 14:14:21 +01:00

10 lines
177 B
C++

#ifndef ONEWAY_H
#define ONEWAY_H
#include <stdint.h>
class OneWay {
public:
virtual unsigned Send (uint16_t * const ptr, const unsigned len) = 0;
};
#endif // ONEWAY_H