26#ifndef BOARD_RemoteTCP_H
27#define BOARD_RemoteTCP_H
29#include "bsim_remote.h"
31#define BOARD_RemoteTCP_Name "Remote TCP"
42 std::string
GetName(
void)
override {
return BOARD_RemoteTCP_Name; };
43 std::string
GetAboutInfo(
void)
override {
return "L.C. Gamboa \n <lcgamboa@yahoo.com>"; };
49 void Draw(
void)
override;
51 void Run_CPU_ns(uint64_t time)
override;
55 void Reset(
void)
override;
57 void EvMouseButtonPress(
unsigned int button,
unsigned int x,
unsigned int y,
unsigned int state)
override;
59 void EvMouseButtonRelease(
unsigned int button,
unsigned int x,
unsigned int y,
unsigned int state)
override;
61 void EvKeyPress(
unsigned int key,
unsigned int mask)
override;
63 void EvKeyRelease(
unsigned int key,
unsigned int mask)
override;
73 unsigned short GetInputId(
char* name)
override;
77 int MInit(
const char* processor,
const char* fname,
float freq)
override;
Definition bsim_remote.h:47
Definition board_RemoteTCP.h:34
void EvThreadRun(void) override
Event on the board.
Definition board_RemoteTCP.cc:637
void Reset(void) override
Reset board status.
Definition board_RemoteTCP.cc:212
unsigned short GetOutputId(char *name) override
return the output ids numbers of names used in output map
Definition board_RemoteTCP.cc:155
unsigned short GetInputId(char *name) override
return the input ids numbers of names used in input map
Definition board_RemoteTCP.cc:141
std::string GetAboutInfo(void) override
Return the about information of part.
Definition board_RemoteTCP.h:43
std::string GetSupportedDevices(void) override
Return a list of supported microcontrollers.
Definition board_RemoteTCP.h:53
void EvMouseButtonRelease(unsigned int button, unsigned int x, unsigned int y, unsigned int state) override
Event on the board.
Definition board_RemoteTCP.cc:341
void ReadPreferences(char *name, char *value) override
Called whe configuration file load preferences.
Definition board_RemoteTCP.cc:272
int MInit(const char *processor, const char *fname, float freq) override
board microcontroller init
Definition board_RemoteTCP.cc:223
void EvMouseButtonPress(unsigned int button, unsigned int x, unsigned int y, unsigned int state) override
Event on the board.
Definition board_RemoteTCP.cc:293
void WritePreferences(void) override
Called to save board preferences in configuration file.
Definition board_RemoteTCP.cc:263
void Run_CPU(void) override
Paralle thread called ever 100ms to run cpu code.
Definition board_RemoteTCP.cc:445
void RegisterRemoteControl(void) override
Register remote control variables.
Definition board_RemoteTCP.cc:252
void Draw(void) override
Called ever 100ms to draw board.
Definition board_RemoteTCP.cc:372
void EvKeyPress(unsigned int key, unsigned int mask) override
Event on the board.
Definition board_RemoteTCP.cc:285
void RefreshStatus(void) override
Called ever 1s to refresh status.
Definition board_RemoteTCP.cc:256
std::string GetName(void) override
Get board name registered in PICSimLab.
Definition board_RemoteTCP.h:42
void EvKeyRelease(unsigned int key, unsigned int mask) override
Event on the board.
Definition board_RemoteTCP.cc:289