26#ifndef BOARD_Blue_Pill_H
27#define BOARD_Blue_Pill_H
29#include "../sim_backend/bsim_qemu.h"
31#define BOARD_Blue_Pill_Name "Blue Pill"
34class cboard_Blue_Pill :
public bsim_qemu {
41 const short int* GetPinMap(
void)
override;
45 std::string
GetName(
void)
override {
return BOARD_Blue_Pill_Name; };
46 std::string
GetAboutInfo(
void)
override {
return "L.C. Gamboa \n <lcgamboa@yahoo.com>"; };
52 void Draw(
void)
override;
54 void Run_CPU_ns(uint64_t time)
override;
60 void Reset(
void)
override;
62 void EvMouseButtonPress(
unsigned int button,
unsigned int x,
unsigned int y,
unsigned int state)
override;
64 void EvMouseButtonRelease(
unsigned int button,
unsigned int x,
unsigned int y,
unsigned int state)
override;
66 void EvKeyPress(
unsigned int key,
unsigned int mask)
override;
68 void EvKeyRelease(
unsigned int key,
unsigned int mask)
override;
74 unsigned short GetInputId(
char* name)
override;
79 void board_ButtonEvent(
const char* controlname,
unsigned int button,
unsigned int x,
unsigned int y,
80 unsigned int state)
override;
81 void MSetAPin(
int pin,
float value)
override;
84 void PinsExtraConfig(
int cfg)
override;
Definition board_Blue_Pill.h:34
void WritePreferences(void) override
Called to save board preferences in configuration file.
Definition board_Blue_Pill.cc:309
void EvKeyPress(unsigned int key, unsigned int mask) override
Event on the board.
Definition board_Blue_Pill.cc:367
std::string GetName(void) override
Get board name registered in PICSimLab.
Definition board_Blue_Pill.h:45
void EvMouseButtonRelease(unsigned int button, unsigned int x, unsigned int y, unsigned int state) override
Event on the board.
Definition board_Blue_Pill.cc:417
std::string GetAboutInfo(void) override
Return the about information of part.
Definition board_Blue_Pill.h:46
unsigned short GetOutputId(char *name) override
return the output ids numbers of names used in output map
Definition board_Blue_Pill.cc:214
void Draw(void) override
Called ever 100ms to draw board.
Definition board_Blue_Pill.cc:447
void ReadPreferences(char *name, char *value) override
Called whe configuration file load preferences.
Definition board_Blue_Pill.cc:328
unsigned short GetInputId(char *name) override
return the input ids numbers of names used in input map
Definition board_Blue_Pill.cc:200
void RegisterRemoteControl(void) override
Register remote control variables.
Definition board_Blue_Pill.cc:303
std::string MGetPinName(int pin) override
board microcontroller pin name
Definition board_Blue_Pill.cc:573
void Run_CPU(void) override
Paralle thread called ever 100ms to run cpu code.
Definition board_Blue_Pill.h:53
std::string GetSupportedDevices(void) override
Return a list of supported microcontrollers.
Definition board_Blue_Pill.h:56
void MSetAPin(int pin, float value) override
board microcontroller set analog pin
Definition board_Blue_Pill.cc:730
void EvKeyRelease(unsigned int key, unsigned int mask) override
Event on the board.
Definition board_Blue_Pill.cc:371
void Reset(void) override
Reset board status.
Definition board_Blue_Pill.cc:286
std::string GetSupportedIDEs(void) override
Return a list of supported IDEs in project wizard.
Definition board_Blue_Pill.h:58
void EvMouseButtonPress(unsigned int button, unsigned int x, unsigned int y, unsigned int state) override
Event on the board.
Definition board_Blue_Pill.cc:375
void board_ButtonEvent(const char *controlname, unsigned int button, unsigned int x, unsigned int y, unsigned int state) override
Called when window side controls are activated.
Definition board_Blue_Pill.cc:791
int MGetPinCount(void) override
board microcontroller pin count
Definition board_Blue_Pill.cc:726
void board_Event(const char *controlname) override
Called when window side controls are activated.
Definition board_Blue_Pill.cc:566