PICSimLab - Programmable IC Simulator Laboratory 0.9.2
PICSimLab - API
Loading...
Searching...
No Matches
board_STM32_H103.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_STM32_H103_H
27#define BOARD_STM32_H103_H
28
29#include "bsim_qemu.h"
30
31#define BOARD_STM32_H103_Name "STM32 H103"
32
33// new board class must be derived from board class defined in board.h
35private:
36 int wconfigId;
37 unsigned char p_BUT;
38
39 void RegisterRemoteControl(void) override;
40
41protected:
42 const short int* GetPinMap(void) override;
43
44public:
45 // Return the board name
46 std::string GetName(void) override { return BOARD_STM32_H103_Name; };
47 std::string GetAboutInfo(void) override { return "L.C. Gamboa \n <lcgamboa@yahoo.com>"; };
48 // Constructor called once on board creation
50 // Destructor called once on board destruction
52 // Called ever 100ms to draw board
53 void Draw(void) override;
54 void Run_CPU(void) override {};
55 void Run_CPU_ns(uint64_t time) override;
56 // Return a list of board supported microcontrollers
57 std::string GetSupportedDevices(void) override { return "stm32f103rbt6,"; };
58 // Reset board status
59 void Reset(void) override;
60 // Event on the board
61 void EvMouseButtonPress(unsigned int button, unsigned int x, unsigned int y, unsigned int state) override;
62 // Event on the board
63 void EvMouseButtonRelease(unsigned int button, unsigned int x, unsigned int y, unsigned int state) override;
64 // Event on the board
65 void EvKeyPress(unsigned int key, unsigned int mask) override;
66 // Event on the board
67 void EvKeyRelease(unsigned int key, unsigned int mask) override;
68 // Called ever 1s to refresh status
69 void RefreshStatus(void) override;
70 // Called to save board preferences in configuration file
71 void WritePreferences(void) override;
72 // Called whe configuration file load preferences
73 void ReadPreferences(char* name, char* value) override;
74 // return the input ids numbers of names used in input map
75 unsigned short GetInputId(char* name) override;
76 // return the output ids numbers of names used in output map
77 unsigned short GetOutputId(char* name) override;
78 // board combo events
79 void board_Event(const char* controlname) override;
80 void board_ButtonEvent(const char* controlname, unsigned int button, unsigned int x, unsigned int y,
81 unsigned int state) override;
82 void MSetAPin(int pin, float value) override;
83 std::string MGetPinName(int pin) override;
84 int MGetPinCount(void) override;
85 void PinsExtraConfig(int cfg) override;
86};
87
88#endif /* BOARD_STM32_H103_H */
Definition bsim_qemu.h:42
Definition board_STM32_H103.h:34
void RegisterRemoteControl(void) override
Register remote control variables.
Definition board_STM32_H103.cc:324
void board_Event(const char *controlname) override
Called when window side controls are activated.
Definition board_STM32_H103.cc:637
void Run_CPU(void) override
Paralle thread called ever 100ms to run cpu code.
Definition board_STM32_H103.h:54
std::string GetName(void) override
Get board name registered in PICSimLab.
Definition board_STM32_H103.h:46
void RefreshStatus(void) override
Called ever 1s to refresh status.
Definition board_STM32_H103.cc:333
void Reset(void) override
Reset board status.
Definition board_STM32_H103.cc:309
void MSetAPin(int pin, float value) override
board microcontroller set analog pin
Definition board_STM32_H103.cc:848
void EvMouseButtonPress(unsigned int button, unsigned int x, unsigned int y, unsigned int state) override
Event on the board.
Definition board_STM32_H103.cc:401
void WritePreferences(void) override
Called to save board preferences in configuration file.
Definition board_STM32_H103.cc:346
void ReadPreferences(char *name, char *value) override
Called whe configuration file load preferences.
Definition board_STM32_H103.cc:362
void Draw(void) override
Called ever 100ms to draw board.
Definition board_STM32_H103.cc:480
std::string GetSupportedDevices(void) override
Return a list of supported microcontrollers.
Definition board_STM32_H103.h:57
unsigned short GetInputId(char *name) override
return the input ids numbers of names used in input map
Definition board_STM32_H103.cc:218
int MGetPinCount(void) override
board microcontroller pin count
Definition board_STM32_H103.cc:844
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_STM32_H103.cc:929
unsigned short GetOutputId(char *name) override
return the output ids numbers of names used in output map
Definition board_STM32_H103.cc:234
void EvKeyRelease(unsigned int key, unsigned int mask) override
Event on the board.
Definition board_STM32_H103.cc:397
std::string MGetPinName(int pin) override
board microcontroller pin name
Definition board_STM32_H103.cc:644
void EvKeyPress(unsigned int key, unsigned int mask) override
Event on the board.
Definition board_STM32_H103.cc:393
void EvMouseButtonRelease(unsigned int button, unsigned int x, unsigned int y, unsigned int state) override
Event on the board.
Definition board_STM32_H103.cc:447
std::string GetAboutInfo(void) override
Return the about information of part.
Definition board_STM32_H103.h:47