summaryrefslogtreecommitdiff
path: root/client/serial_win32.c
blob: 99f4160456c9657b748a986daf70d54b32363301 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#ifdef W2_HOST_WIN32

#include "serial.h"

int w2_serial_read() { return 0x00; }

bool w2_serial_write(char *data, uint8_t length) { return true; }

bool w2_serial_open(const char *port_name) { return true; }

void w2_serial_close() { return; }

#endif