mirror of
https://github.com/cathery/sys-con.git
synced 2024-11-05 08:26:32 +00:00
38 lines
1.3 KiB
C++
38 lines
1.3 KiB
C++
#pragma once
|
|
#include "switch.h"
|
|
#include "IUSBEndpoint.h"
|
|
#include <memory>
|
|
|
|
class SwitchUSBEndpoint : public IUSBEndpoint
|
|
{
|
|
private:
|
|
UsbHsClientEpSession m_epSession{};
|
|
UsbHsClientIfSession *m_ifSession;
|
|
usb_endpoint_descriptor *m_descriptor;
|
|
|
|
void *m_buffer = nullptr;
|
|
|
|
public:
|
|
//Pass the necessary information to be able to open the endpoint
|
|
SwitchUSBEndpoint(UsbHsClientIfSession &if_session, usb_endpoint_descriptor &desc);
|
|
~SwitchUSBEndpoint();
|
|
|
|
//Open and close the endpoint
|
|
virtual Result Open(int maxPacketSize = 0) override;
|
|
virtual void Close() override;
|
|
|
|
//buffer should point to the data array, and only the specified size will be read.
|
|
virtual Result Write(const void *inBuffer, size_t bufferSize) override;
|
|
|
|
//The data received will be put in the outBuffer array for the length of the specified size.
|
|
virtual Result Read(void *outBuffer, size_t bufferSize) override;
|
|
|
|
//Gets the direction of this endpoint (IN or OUT)
|
|
virtual IUSBEndpoint::Direction GetDirection() override;
|
|
|
|
//get the endpoint descriptor
|
|
virtual IUSBEndpoint::EndpointDescriptor *GetDescriptor() override;
|
|
|
|
// Get the current EpSession (after it was opened)
|
|
inline UsbHsClientEpSession &GetSession() { return m_epSession; }
|
|
}; |