PICSimLab - Programmable IC Simulator Laboratory 0.9.2
PICSimLab - API
Loading...
Searching...
No Matches
board_Franzininho_DIY.h
1/* ########################################################################
2
3 PICSimLab - Programmable IC Simulator Laboratory
4
5 ########################################################################
6
7 Copyright (c) : 2017-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_Franzininho_DIY_H
27#define BOARD_Franzininho_DIY_H
28
29#include "bsim_simavr.h"
30
31#define BOARD_Franzininho_DIY_Name "Franzininho DIY"
32
33// new board class must be derived from board class defined in board.h
35private:
36 void RegisterRemoteControl(void) override;
37
38public:
39 // Return the board name
40 std::string GetName(void) override { return BOARD_Franzininho_DIY_Name; };
41 std::string GetAboutInfo(void) override {
42 return "Fábio Souza e Felipe Alvares\n <contato@franzininho.com.br>\n https://franzininho.com.br/";
43 };
44 // Constructor called once on board creation
46 // Destructor called once on board destruction
48 // Called ever 100ms to draw board
49 void Draw(void) override;
50 void Run_CPU(void) override;
51 // Return a list of board supported microcontrollers
52 std::string GetSupportedDevices(void) override { return "attiny85,"; };
53 // Reset board status
54 void Reset(void) override;
55 // Event on the board
56 void EvMouseButtonPress(unsigned int button, unsigned int x, unsigned int y, unsigned int state) override;
57 // Event on the board
58 void EvMouseButtonRelease(unsigned int button, unsigned int x, unsigned int y, unsigned int state) override;
59 // Event on the board
60 void EvKeyPress(unsigned int key, unsigned int mask) override;
61 // Event on the board
62 void EvKeyRelease(unsigned int key, unsigned int mask) override;
63 // Called ever 1s to refresh status
64 void RefreshStatus(void) override;
65 // Called to save board preferences in configuration file
66 void WritePreferences(void) override;
67 // Called whe configuration file load preferences
68 void ReadPreferences(char* name, char* value) override;
69 // return the input ids numbers of names used in input map
70 unsigned short GetInputId(char* name) override;
71 // return the output ids numbers of names used in output map
72 unsigned short GetOutputId(char* name) override;
73};
74
75#endif /* BOARD_Franzininho_DIY_H */
Definition bsim_simavr.h:56
Definition board_Franzininho_DIY.h:34
void Reset(void) override
Reset board status.
Definition board_Franzininho_DIY.cc:122
void Draw(void) override
Called ever 100ms to draw board.
Definition board_Franzininho_DIY.cc:271
void ReadPreferences(char *name, char *value) override
Called whe configuration file load preferences.
Definition board_Franzininho_DIY.cc:180
std::string GetName(void) override
Get board name registered in PICSimLab.
Definition board_Franzininho_DIY.h:40
void RegisterRemoteControl(void) override
Register remote control variables.
Definition board_Franzininho_DIY.cc:133
unsigned short GetInputId(char *name) override
return the input ids numbers of names used in input map
Definition board_Franzininho_DIY.cc:59
void EvKeyRelease(unsigned int key, unsigned int mask) override
Event on the board.
Definition board_Franzininho_DIY.cc:197
std::string GetSupportedDevices(void) override
Return a list of supported microcontrollers.
Definition board_Franzininho_DIY.h:52
unsigned short GetOutputId(char *name) override
return the output ids numbers of names used in output map
Definition board_Franzininho_DIY.cc:73
std::string GetAboutInfo(void) override
Return the about information of part.
Definition board_Franzininho_DIY.h:41
void EvKeyPress(unsigned int key, unsigned int mask) override
Event on the board.
Definition board_Franzininho_DIY.cc:193
void RefreshStatus(void) override
Called ever 1s to refresh status.
Definition board_Franzininho_DIY.cc:139
void WritePreferences(void) override
Called to save board preferences in configuration file.
Definition board_Franzininho_DIY.cc:172
void EvMouseButtonRelease(unsigned int button, unsigned int x, unsigned int y, unsigned int state) override
Event on the board.
Definition board_Franzininho_DIY.cc:243
void EvMouseButtonPress(unsigned int button, unsigned int x, unsigned int y, unsigned int state) override
Event on the board.
Definition board_Franzininho_DIY.cc:201
void Run_CPU(void) override
Paralle thread called ever 100ms to run cpu code.
Definition board_Franzininho_DIY.cc:367