2016-10-11 12:05:55 +00:00
|
|
|
/*
|
|
|
|
* Copyright (c) Pavol Rusnak, SatoshiLabs
|
|
|
|
*
|
|
|
|
* Licensed under TREZOR License
|
|
|
|
* see LICENSE file for details
|
|
|
|
*/
|
|
|
|
|
2017-02-16 13:12:32 +00:00
|
|
|
#include "touch.h"
|
|
|
|
|
2016-09-23 09:27:26 +00:00
|
|
|
extern struct _USBD_HandleTypeDef hUSBDDevice;
|
|
|
|
extern uint8_t USBD_HID_SendReport(struct _USBD_HandleTypeDef *pdev, uint8_t *report, uint16_t len);
|
|
|
|
extern int USBD_HID_Rx(uint8_t *buf, uint32_t len, uint32_t timeout);
|
2016-04-29 14:02:18 +00:00
|
|
|
|
2016-04-29 01:15:18 +00:00
|
|
|
void msg_init(void)
|
|
|
|
{
|
2017-02-16 13:12:32 +00:00
|
|
|
touch_init();
|
2016-04-29 01:15:18 +00:00
|
|
|
}
|
|
|
|
|
2016-10-11 11:13:14 +00:00
|
|
|
ssize_t msg_recv(uint8_t *iface, uint8_t *buf, size_t len)
|
2016-04-29 01:15:18 +00:00
|
|
|
{
|
2016-10-11 11:13:14 +00:00
|
|
|
*iface = 0; // TODO: return proper interface
|
2016-09-23 09:27:26 +00:00
|
|
|
return USBD_HID_Rx(buf, len, 1);
|
2016-04-29 01:15:18 +00:00
|
|
|
}
|
|
|
|
|
2016-10-11 11:13:14 +00:00
|
|
|
ssize_t msg_send(uint8_t iface, const uint8_t *buf, size_t len)
|
2016-04-29 01:15:18 +00:00
|
|
|
{
|
2016-10-11 11:13:14 +00:00
|
|
|
(void)iface; // TODO: ignore interface for now
|
2016-10-04 16:53:32 +00:00
|
|
|
if (len > 0) {
|
|
|
|
USBD_HID_SendReport(&hUSBDDevice, (uint8_t *)buf, len);
|
|
|
|
}
|
2016-09-23 09:27:26 +00:00
|
|
|
return len;
|
2016-04-29 01:15:18 +00:00
|
|
|
}
|
|
|
|
|
2016-09-19 14:56:47 +00:00
|
|
|
// this should match values used in trezorui_poll_sdl_event() in modtrezorui/display-unix.h
|
2016-04-29 01:15:18 +00:00
|
|
|
uint32_t msg_poll_ui_event(void)
|
|
|
|
{
|
2017-02-16 13:12:32 +00:00
|
|
|
return touch_event();
|
2016-04-29 01:15:18 +00:00
|
|
|
}
|