26#ifndef BOARD_Arduino_Mega_H
27#define BOARD_Arduino_Mega_H
29#include "board_Arduino_Uno.h"
31#define BOARD_Arduino_Mega_Name "Arduino Mega"
36 std::string
GetName(
void)
override {
return BOARD_Arduino_Mega_Name; };
37 std::string
GetAboutInfo(
void)
override {
return "L.C. Gamboa \n <lcgamboa@yahoo.com>"; };
Definition board_Arduino_Mega.h:34
std::string GetSupportedDevices(void) override
Return a list of supported microcontrollers.
Definition board_Arduino_Mega.h:40
void WritePreferences(void) override
Called to save board preferences in configuration file.
Definition board_Arduino_Mega.cc:49
void ReadPreferences(char *name, char *value) override
Called whe configuration file load preferences.
Definition board_Arduino_Mega.cc:57
std::string GetName(void) override
Get board name registered in PICSimLab.
Definition board_Arduino_Mega.h:36
std::string GetAboutInfo(void) override
Return the about information of part.
Definition board_Arduino_Mega.h:37
Definition board_Arduino_Uno.h:34