PICSimLab - Programmable IC Simulator Laboratory 0.9.2
PICSimLab - API
Loading...
Searching...
No Matches
board_x.h
1/* ########################################################################
2
3 PICSimLab - Programmable IC Simulator Laboratory
4
5 ########################################################################
6
7 Copyright (c) : 2015-2024 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_x_H
27#define BOARD_x_H
28
29#include "../devices/swbounce.h"
30#include "bsim_picsim.h"
31
32#define BOARD_x_Name "X"
33
34// new board class must be derived from board class defined in board.h
35class cboard_x : public bsim_picsim {
36private:
37 unsigned char p_BT1; // first board push button in RD0
38 unsigned char p_BT2; // second board switch in RD1
39
40 // value of potentiometer
41 unsigned char pot1;
42 // flag to control if potentiometer is active
43 unsigned char active;
44
45 // Register controls for remote interface called once on board creation
46 void RegisterRemoteControl(void) override;
47
48 SWBounce_t bounce;
49
50public:
51 // Constructor called once on board creation
52 cboard_x(void);
53 // Destructor called once on board destruction
54 ~cboard_x(void);
55 // Return the board name
56 std::string GetName(void) override { return BOARD_x_Name; };
57 // Return the about info of board
58 std::string GetAboutInfo(void) override { return "L.C. Gamboa \n <lcgamboa@yahoo.com>"; };
59 // Called ever 100ms to draw board
60 void Draw(void) override;
61 void Run_CPU(void) override;
62 // Return a list of board supported microcontrollers
63 std::string GetSupportedDevices(void) override { return "PIC16F877A,PIC18F4550,PIC18F4620,"; };
64 // Reset board status
65 void Reset(void) override;
66 // Event on the board
67 void EvMouseButtonPress(unsigned int button, unsigned int x, unsigned int y, unsigned int state) override;
68 // Event on the board
69 void EvMouseButtonRelease(unsigned int button, unsigned int x, unsigned int y, unsigned int state) override;
70 // Event on the board
71 void EvMouseMove(unsigned int button, unsigned int x, unsigned int y, unsigned int state) override;
72 // Event on the board
73 void EvKeyPress(unsigned int key, unsigned int mask) override;
74 // Event on the board
75 void EvKeyRelease(unsigned int key, unsigned int mask) override;
76 // Called ever 1s to refresh status
77 void RefreshStatus(void) override;
78 // Called to save board preferences in configuration file
79 void WritePreferences(void) override;
80 // Called whe configuration file load preferences
81 void ReadPreferences(char* name, char* value) override;
82 // return the input ids numbers of names used in input map
83 unsigned short GetInputId(char* name) override;
84 // return the output ids numbers of names used in output map
85 unsigned short GetOutputId(char* name) override;
86};
87
88#endif /* BOARD_x_H */
Definition bsim_picsim.h:34
Definition board_x.h:35
void RefreshStatus(void) override
Called ever 1s to refresh status.
Definition board_x.cc:183
std::string GetSupportedDevices(void) override
Return a list of supported microcontrollers.
Definition board_x.h:63
void EvMouseButtonPress(unsigned int button, unsigned int x, unsigned int y, unsigned int state) override
Event on the board.
Definition board_x.cc:263
std::string GetName(void) override
Get board name registered in PICSimLab.
Definition board_x.h:56
void WritePreferences(void) override
Called to save board preferences in configuration file.
Definition board_x.cc:199
void Draw(void) override
Called ever 100ms to draw board.
Definition board_x.cc:384
void Run_CPU(void) override
Paralle thread called ever 100ms to run cpu code.
Definition board_x.cc:513
void ReadPreferences(char *name, char *value) override
Called whe configuration file load preferences.
Definition board_x.cc:212
void Reset(void) override
Reset board status.
Definition board_x.cc:133
unsigned short GetInputId(char *name) override
return the input ids numbers of names used in input map
Definition board_x.cc:61
void EvMouseMove(unsigned int button, unsigned int x, unsigned int y, unsigned int state) override
Event on the board.
Definition board_x.cc:323
void EvMouseButtonRelease(unsigned int button, unsigned int x, unsigned int y, unsigned int state) override
Event on the board.
Definition board_x.cc:346
void EvKeyPress(unsigned int key, unsigned int mask) override
Event on the board.
Definition board_x.cc:237
unsigned short GetOutputId(char *name) override
return the output ids numbers of names used in output map
Definition board_x.cc:81
void RegisterRemoteControl(void) override
Register remote control variables.
Definition board_x.cc:163
void EvKeyRelease(unsigned int key, unsigned int mask) override
Event on the board.
Definition board_x.cc:253
std::string GetAboutInfo(void) override
Return the about information of part.
Definition board_x.h:58
Definition swbounce.h:29