26#ifndef BOARD_DevKitC_H
27#define BOARD_DevKitC_H
29#include "../sim_backend/bsim_qemu.h"
31#define BOARD_DevKitC_Name "ESP32-DevKitC"
34class cboard_DevKitC :
public bsim_qemu {
41 int ConfEnableEthernet;
44 void BoardOptions(
int* argc,
char** argv)
override;
45 const short int* GetPinMap(
void)
override;
49 std::string
GetName(
void)
override {
return BOARD_DevKitC_Name; };
50 std::string
GetAboutInfo(
void)
override {
return "L.C. Gamboa \n <lcgamboa@yahoo.com>"; };
56 void Draw(
void)
override;
58 void Run_CPU_ns(uint64_t time)
override;
62 void Reset(
void)
override;
64 void EvMouseButtonPress(
unsigned int button,
unsigned int x,
unsigned int y,
unsigned int state)
override;
66 void EvMouseButtonRelease(
unsigned int button,
unsigned int x,
unsigned int y,
unsigned int state)
override;
68 void EvKeyPress(
unsigned int key,
unsigned int mask)
override;
70 void EvKeyRelease(
unsigned int key,
unsigned int mask)
override;
76 unsigned short GetInputId(
char* name)
override;
81 void board_ButtonEvent(
const char* controlname,
unsigned int button,
unsigned int x,
unsigned int y,
82 unsigned int state)
override;
83 void MSetAPin(
int pin,
float value)
override;
86 void PinsExtraConfig(
int cfg)
override;
Definition board_DevKitC.h:34
std::string GetAboutInfo(void) override
Return the about information of part.
Definition board_DevKitC.h:50
void EvMouseButtonRelease(unsigned int button, unsigned int x, unsigned int y, unsigned int state) override
Event on the board.
Definition board_DevKitC.cc:487
void ReadPreferences(char *name, char *value) override
Called whe configuration file load preferences.
Definition board_DevKitC.cc:391
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_DevKitC.cc:721
void Run_CPU(void) override
Paralle thread called ever 100ms to run cpu code.
Definition board_DevKitC.cc:661
void EvKeyRelease(unsigned int key, unsigned int mask) override
Event on the board.
Definition board_DevKitC.cc:438
void EvMouseButtonPress(unsigned int button, unsigned int x, unsigned int y, unsigned int state) override
Event on the board.
Definition board_DevKitC.cc:442
void board_Event(const char *controlname) override
Called when window side controls are activated.
Definition board_DevKitC.cc:692
std::string GetName(void) override
Get board name registered in PICSimLab.
Definition board_DevKitC.h:49
unsigned short GetOutputId(char *name) override
return the output ids numbers of names used in output map
Definition board_DevKitC.cc:256
void RegisterRemoteControl(void) override
Register remote control variables.
Definition board_DevKitC.cc:365
unsigned short GetInputId(char *name) override
return the input ids numbers of names used in input map
Definition board_DevKitC.cc:240
void EvKeyPress(unsigned int key, unsigned int mask) override
Event on the board.
Definition board_DevKitC.cc:434
void MSetAPin(int pin, float value) override
board microcontroller set analog pin
Definition board_DevKitC.cc:1259
std::string MGetPinName(int pin) override
board microcontroller pin name
Definition board_DevKitC.cc:1132
void WritePreferences(void) override
Called to save board preferences in configuration file.
Definition board_DevKitC.cc:371
std::string GetSupportedDevices(void) override
Return a list of supported microcontrollers.
Definition board_DevKitC.h:60
void Reset(void) override
Reset board status.
Definition board_DevKitC.cc:341
int MGetPinCount(void) override
board microcontroller pin count
Definition board_DevKitC.cc:1255
void Draw(void) override
Called ever 100ms to draw board.
Definition board_DevKitC.cc:520
unsigned int DBGGetROMSize(void) override
board microcontroller get ROM (FLASH) memory size
Definition board_DevKitC.h:87