PICSimLab - Programmable IC Simulator Laboratory 0.9.2
PICSimLab - API
Loading...
Searching...
No Matches
board_McLab1.h
1/* ########################################################################
2
3 PICSimLab - Programmable IC Simulator Laboratory
4
5 ########################################################################
6
7 Copyright (c) : 2010-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_McLab1_H
27#define BOARD_McLab1_H
28
29#include "../devices/swbounce.h"
30#include "bsim_picsim.h"
31
32#define BOARD_McLab1_Name "McLab1"
33
34class cboard_McLab1 : public bsim_picsim {
35private:
36 unsigned char p_BT[4];
37 unsigned char jmp[1];
38 unsigned int lm1[18]; // luminosidade media display
39 unsigned int lm2[18]; // luminosidade media display
40
41 void RegisterRemoteControl(void) override;
42 SWBounce_t bounce;
43
44public:
45 // Return the board name
46 std::string GetName(void) override { return BOARD_McLab1_Name; };
47 std::string GetAboutInfo(void) override { return "L.C. Gamboa \n <lcgamboa@yahoo.com>"; };
48 cboard_McLab1(void);
49 ~cboard_McLab1(void);
50 void Draw(void) override;
51 void Run_CPU(void) override;
52 std::string GetSupportedDevices(void) override { return "PIC16F628A,PIC16F648A,PIC16F84A,"; };
53 void Reset(void) override;
54 void EvMouseButtonPress(unsigned int button, unsigned int x, unsigned int y, unsigned int state) override;
55 void EvMouseButtonRelease(unsigned int button, unsigned int x, unsigned int y, unsigned int state) override;
56 void EvKeyPress(unsigned int key, unsigned int mask) override;
57 void EvKeyRelease(unsigned int key, unsigned int mask) override;
58 void WritePreferences(void) override;
59 void ReadPreferences(char* name, char* value) override;
60 unsigned short GetInputId(char* name) override;
61 unsigned short GetOutputId(char* name) override;
62 int GetDefaultClock(void) override { return 4; };
63};
64
65#endif /* BOARD_McLab1_H */
Definition bsim_picsim.h:34
Definition board_McLab1.h:34
void EvMouseButtonPress(unsigned int button, unsigned int x, unsigned int y, unsigned int state) override
Event on the board.
Definition board_McLab1.cc:654
void Draw(void) override
Called ever 100ms to draw board.
Definition board_McLab1.cc:94
void RegisterRemoteControl(void) override
Register remote control variables.
Definition board_McLab1.cc:561
void Run_CPU(void) override
Paralle thread called ever 100ms to run cpu code.
Definition board_McLab1.cc:352
unsigned short GetOutputId(char *name) override
return the output ids numbers of names used in output map
Definition board_McLab1.cc:822
void EvKeyPress(unsigned int key, unsigned int mask) override
Event on the board.
Definition board_McLab1.cc:759
std::string GetAboutInfo(void) override
Return the about information of part.
Definition board_McLab1.h:47
void EvMouseButtonRelease(unsigned int button, unsigned int x, unsigned int y, unsigned int state) override
Event on the board.
Definition board_McLab1.cc:719
std::string GetSupportedDevices(void) override
Return a list of supported microcontrollers.
Definition board_McLab1.h:52
void WritePreferences(void) override
Called to save board preferences in configuration file.
Definition board_McLab1.cc:913
std::string GetName(void) override
Get board name registered in PICSimLab.
Definition board_McLab1.h:46
void EvKeyRelease(unsigned int key, unsigned int mask) override
Event on the board.
Definition board_McLab1.cc:778
void ReadPreferences(char *name, char *value) override
Called whe configuration file load preferences.
Definition board_McLab1.cc:919
unsigned short GetInputId(char *name) override
return the input ids numbers of names used in input map
Definition board_McLab1.cc:800
int GetDefaultClock(void) override
Get board default clock in MHz.
Definition board_McLab1.h:62
void Reset(void) override
Reset board status.
Definition board_McLab1.cc:536
Definition swbounce.h:29