26#ifndef BOARD_uCboard_H
27#define BOARD_uCboard_H
29#include "bsim_ucsim.h"
31#define BOARD_uCboard_Name "uCboard"
39 void SetScale(
double scale)
override;
41 std::string
GetName(
void)
override {
return BOARD_uCboard_Name; };
42 std::string
GetAboutInfo(
void)
override {
return "L.C. Gamboa \n <lcgamboa@yahoo.com>"; };
48 void Draw(
void)
override;
50 int MInit(
const char* processor,
const char* fname,
float freq)
override;
54 void Reset(
void)
override;
56 void EvMouseButtonPress(
unsigned int button,
unsigned int x,
unsigned int y,
unsigned int state)
override;
58 void EvMouseButtonRelease(
unsigned int button,
unsigned int x,
unsigned int y,
unsigned int state)
override;
60 void EvKeyPress(
unsigned int key,
unsigned int mask)
override;
62 void EvKeyRelease(
unsigned int key,
unsigned int mask)
override;
70 unsigned short GetInputId(
char* name)
override;
Definition bsim_ucsim.h:32
Definition board_uCboard.h:34
int MInit(const char *processor, const char *fname, float freq) override
board microcontroller init
Definition board_uCboard.cc:358
void WritePreferences(void) override
Called to save board preferences in configuration file.
Definition board_uCboard.cc:111
void Run_CPU(void) override
Paralle thread called ever 100ms to run cpu code.
Definition board_uCboard.cc:290
unsigned short GetOutputId(char *name) override
return the output ids numbers of names used in output map
Definition board_uCboard.cc:63
void SetScale(double scale) override
Set board draw scale.
Definition board_uCboard.cc:395
void RefreshStatus(void) override
Called ever 1s to refresh status.
Definition board_uCboard.cc:105
void EvMouseButtonRelease(unsigned int button, unsigned int x, unsigned int y, unsigned int state) override
Event on the board.
Definition board_uCboard.cc:186
void EvKeyPress(unsigned int key, unsigned int mask) override
Event on the board.
Definition board_uCboard.cc:133
void Draw(void) override
Called ever 100ms to draw board.
Definition board_uCboard.cc:217
std::string GetSupportedDevices(void) override
Return a list of supported microcontrollers.
Definition board_uCboard.h:52
std::string GetAboutInfo(void) override
Return the about information of part.
Definition board_uCboard.h:42
void EvMouseButtonPress(unsigned int button, unsigned int x, unsigned int y, unsigned int state) override
Event on the board.
Definition board_uCboard.cc:141
void ReadPreferences(char *name, char *value) override
Called whe configuration file load preferences.
Definition board_uCboard.cc:120
unsigned short GetInputId(char *name) override
return the input ids numbers of names used in input map
Definition board_uCboard.cc:49
void Reset(void) override
Reset board status.
Definition board_uCboard.cc:94
std::string GetName(void) override
Get board name registered in PICSimLab.
Definition board_uCboard.h:41
void EvKeyRelease(unsigned int key, unsigned int mask) override
Event on the board.
Definition board_uCboard.cc:137