From f9516c69777c61aa223078b9e8b2c8939b886b74 Mon Sep 17 00:00:00 2001 From: Vasily Davydov Date: Wed, 21 Sep 2022 10:39:29 +0300 Subject: [PATCH] eventhandler: init #6 --- EventHandler/.cproject | 242 ++++++++++++++++++++++++++++++ EventHandler/inc/EventHandler.h | 17 +++ EventHandler/liblinks.xml | 32 ++++ EventHandler/src/EventHandler.cpp | 18 +++ 4 files changed, 309 insertions(+) create mode 100644 EventHandler/.cproject create mode 100644 EventHandler/inc/EventHandler.h create mode 100644 EventHandler/liblinks.xml create mode 100644 EventHandler/src/EventHandler.cpp diff --git a/EventHandler/.cproject b/EventHandler/.cproject new file mode 100644 index 0000000..4986d0b --- /dev/null +++ b/EventHandler/.cproject @@ -0,0 +1,242 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + <?xml version="1.0" encoding="UTF-8"?> +<TargetConfig> +<Properties property_2="LPC15xx_256K.cfx" property_3="NXP" property_4="LPC1549" property_count="5" version="100300"/> +<infoList vendor="NXP"> +<info chip="LPC1549" connectscript="LPC15RunBootRomConnect.scp" flash_driver="LPC15xx_256K.cfx" match_id="0x0" name="LPC1549" resetscript="LPC15RunBootRomReset.scp" stub="crt_emu_cm3_gen"> +<chip> +<name>LPC1549</name> +<family>LPC15xx</family> +<vendor>NXP (formerly Philips)</vendor> +<reset board="None" core="Real" sys="Real"/> +<clock changeable="TRUE" freq="12MHz" is_accurate="TRUE"/> +<memory can_program="true" id="Flash" is_ro="true" type="Flash"/> +<memory id="RAM" type="RAM"/> +<memory id="Periph" is_volatile="true" type="Peripheral"/> +<memoryInstance derived_from="Flash" id="MFlash256" location="0x0" size="0x40000"/> +<memoryInstance derived_from="RAM" id="Ram0_16" location="0x2000000" size="0x4000"/> +<memoryInstance derived_from="RAM" id="Ram1_16" location="0x2004000" size="0x4000"/> +<memoryInstance derived_from="RAM" id="Ram2_4" location="0x2008000" size="0x1000"/> +</chip> +<processor> +<name gcc_name="cortex-m3">Cortex-M3</name> +<family>Cortex-M</family> +</processor> +</info> +</infoList> +</TargetConfig> + + + LPCXpresso1549 + + \ No newline at end of file diff --git a/EventHandler/inc/EventHandler.h b/EventHandler/inc/EventHandler.h new file mode 100644 index 0000000..f715beb --- /dev/null +++ b/EventHandler/inc/EventHandler.h @@ -0,0 +1,17 @@ +/* + * EventHandler.h + * + * Created on: Sep 21, 2022 + * Author: tylen + */ + +#ifndef EVENTHANDLER_H_ +#define EVENTHANDLER_H_ + +class EventHandler { +public: + EventHandler(); + virtual ~EventHandler(); +}; + +#endif /* EVENTHANDLER_H_ */ diff --git a/EventHandler/liblinks.xml b/EventHandler/liblinks.xml new file mode 100644 index 0000000..1dc1803 --- /dev/null +++ b/EventHandler/liblinks.xml @@ -0,0 +1,32 @@ + + + + + ${MacroStart}workspace_loc:/${ProjName}/inc${MacroEnd} + + + ${MacroStart}workspace_loc:/${ProjName}/inc${MacroEnd} + + + ${ProjName} + + + ${MacroStart}workspace_loc:/${ProjName}/Debug${MacroEnd} + + + ${MacroStart}workspace_loc:/${ProjName}/Release${MacroEnd} + + + ${ProjName} + + + diff --git a/EventHandler/src/EventHandler.cpp b/EventHandler/src/EventHandler.cpp new file mode 100644 index 0000000..4faa8cf --- /dev/null +++ b/EventHandler/src/EventHandler.cpp @@ -0,0 +1,18 @@ +/* + * EventHandler.cpp + * + * Created on: Sep 21, 2022 + * Author: tylen + */ + +#include + +EventHandler::EventHandler() { + // TODO Auto-generated constructor stub + +} + +EventHandler::~EventHandler() { + // TODO Auto-generated destructor stub +} +