PICSimLab - Programmable IC Simulator Laboratory 0.9.3
PICSimLab - API
Loading...
Searching...
No Matches
board_C3_DevKitC.h
1/* ########################################################################
2
3 PICSimLab - Programmable IC Simulator Laboratory
4
5 ########################################################################
6
7 Copyright (c) : 2015-2026 Luis Claudio GambĂ´a Lopes <lcgamboa@yahoo.com>
8
9 This program is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation; either version 2, or (at your option)
12 any later version.
13
14 This program is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
18
19 You should have received a copy of the GNU General Public License
20 along with this program; if not, write to the Free Software
21 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
22
23 For e-mail suggestions : lcgamboa@yahoo.com
24 ######################################################################## */
25
26#ifndef BOARD_C3_DevKitC_H
27#define BOARD_C3_DevKitC_H
28
29#include "../sim_backend/bsim_qemu.h"
30
31#define BOARD_C3_DevKitC_Name "ESP32-C3-DevKitC-02"
32
33// new board class must be derived from board class defined in board.h
34class cboard_C3_DevKitC : public bsim_qemu {
35private:
36 unsigned char p_BOOT;
37 void RegisterRemoteControl(void) override;
38 int wconfigId;
39 int ConfEnableWifi;
40 int ConfDisableWdt;
41 int ConfEnableEthernet;
42
43protected:
44 void BoardOptions(int* argc, char** argv) override;
45 const short int* GetPinMap(void) override;
46
47public:
48 // Return the board name
49 std::string GetName(void) override { return BOARD_C3_DevKitC_Name; };
50 std::string GetAboutInfo(void) override { return "L.C. Gamboa \n <lcgamboa@yahoo.com>"; };
51 // Constructor called once on board creation
53 // Destructor called once on board destruction
55 // Called ever 100ms to draw board
56 void Draw(void) override;
57 void Run_CPU(void) override;
58 void Run_CPU_ns(uint64_t time) override;
59 // Return a list of board supported microcontrollers
60 std::string GetSupportedDevices(void) override { return "ESP32-C3,"; };
61 // Reset board status
62 void Reset(void) override;
63 // Event on the board
64 void EvMouseButtonPress(unsigned int button, unsigned int x, unsigned int y, unsigned int state) override;
65 // Event on the board
66 void EvMouseButtonRelease(unsigned int button, unsigned int x, unsigned int y, unsigned int state) override;
67 // Event on the board
68 void EvKeyPress(unsigned int key, unsigned int mask) override;
69 // Event on the board
70 void EvKeyRelease(unsigned int key, unsigned int mask) override;
71 // Called to save board preferences in configuration file
72 void WritePreferences(void) override;
73 // Called whe configuration file load preferences
74 void ReadPreferences(char* name, char* value) override;
75 // return the input ids numbers of names used in input map
76 unsigned short GetInputId(char* name) override;
77 // return the output ids numbers of names used in output map
78 unsigned short GetOutputId(char* name) override;
79 // board combo events
80 void board_Event(const char* controlname) 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;
84 std::string MGetPinName(int pin) override;
85 int MGetPinCount(void) override;
86 void PinsExtraConfig(int cfg) override;
87 unsigned int DBGGetROMSize(void) override { return 4194304; };
88};
89
90#endif /* BOARD_C3_DevKitC_H */
Definition board_C3_DevKitC.h:34
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_C3_DevKitC.cc:661
void Reset(void) override
Reset board status.
Definition board_C3_DevKitC.cc:280
void WritePreferences(void) override
Called to save board preferences in configuration file.
Definition board_C3_DevKitC.cc:310
unsigned short GetInputId(char *name) override
return the input ids numbers of names used in input map
Definition board_C3_DevKitC.cc:175
void MSetAPin(int pin, float value) override
board microcontroller set analog pin
Definition board_C3_DevKitC.cc:1169
int MGetPinCount(void) override
board microcontroller pin count
Definition board_C3_DevKitC.cc:1165
unsigned short GetOutputId(char *name) override
return the output ids numbers of names used in output map
Definition board_C3_DevKitC.cc:191
void Run_CPU(void) override
Paralle thread called ever 100ms to run cpu code.
Definition board_C3_DevKitC.cc:600
void EvKeyPress(unsigned int key, unsigned int mask) override
Event on the board.
Definition board_C3_DevKitC.cc:373
void Draw(void) override
Called ever 100ms to draw board.
Definition board_C3_DevKitC.cc:459
void RegisterRemoteControl(void) override
Register remote control variables.
Definition board_C3_DevKitC.cc:304
void board_Event(const char *controlname) override
Called when window side controls are activated.
Definition board_C3_DevKitC.cc:631
void ReadPreferences(char *name, char *value) override
Called whe configuration file load preferences.
Definition board_C3_DevKitC.cc:330
std::string GetSupportedDevices(void) override
Return a list of supported microcontrollers.
Definition board_C3_DevKitC.h:60
void EvKeyRelease(unsigned int key, unsigned int mask) override
Event on the board.
Definition board_C3_DevKitC.cc:377
std::string MGetPinName(int pin) override
board microcontroller pin name
Definition board_C3_DevKitC.cc:1066
std::string GetAboutInfo(void) override
Return the about information of part.
Definition board_C3_DevKitC.h:50
std::string GetName(void) override
Get board name registered in PICSimLab.
Definition board_C3_DevKitC.h:49
void EvMouseButtonPress(unsigned int button, unsigned int x, unsigned int y, unsigned int state) override
Event on the board.
Definition board_C3_DevKitC.cc:381
unsigned int DBGGetROMSize(void) override
board microcontroller get ROM (FLASH) memory size
Definition board_C3_DevKitC.h:87
void EvMouseButtonRelease(unsigned int button, unsigned int x, unsigned int y, unsigned int state) override
Event on the board.
Definition board_C3_DevKitC.cc:426