chg: write serial port in window title (plot/slider)

This commit is contained in:
iceman1001 2020-01-29 15:16:50 +01:00
commit 996b41dce7
5 changed files with 28 additions and 2 deletions

View file

@ -44,6 +44,7 @@ typedef enum {
FPGA_MEM,
} DeviceMemType_t;
typedef struct {
bool run; // If TRUE, continue running the uart_communication thread
bool block_after_ACK; // if true, block after receiving an ACK package
@ -60,6 +61,8 @@ typedef struct {
extern communication_arg_t conn;
extern uint8_t gui_serial_port_name[FILE_PATH_SIZE];
void *uart_receiver(void *targ);
void SendCommandBL(uint64_t cmd, uint64_t arg0, uint64_t arg1, uint64_t arg2, void *data, size_t len);
void SendCommandOLD(uint64_t cmd, uint64_t arg0, uint64_t arg1, uint64_t arg2, void *data, size_t len);