From 4b0d2a30c0068ace46ae0cda442b01ae06a86e19 Mon Sep 17 00:00:00 2001 From: Daniel Friesel Date: Thu, 14 Oct 2021 16:32:53 +0200 Subject: etcontroller: add application and makefile --- src/app/etcontroller/Makefile.inc | 12 ++++++++++++ src/app/etcontroller/main.cc | 28 ++++++++++++++++++++++++++++ 2 files changed, 40 insertions(+) create mode 100644 src/app/etcontroller/Makefile.inc create mode 100644 src/app/etcontroller/main.cc (limited to 'src/app/etcontroller') diff --git a/src/app/etcontroller/Makefile.inc b/src/app/etcontroller/Makefile.inc new file mode 100644 index 0000000..0ac9285 --- /dev/null +++ b/src/app/etcontroller/Makefile.inc @@ -0,0 +1,12 @@ +ifdef app + override timer_s = 0 + loop = 1 +endif + +ifneq (${etcontroller_reset_pin}, ) + COMMON_FLAGS += -DCONFIG_ETCONTROLLER_RESET_PIN=${etcontroller_reset_pin} +endif + +ifeq (${etcontroller_nrst}, 1) + COMMON_FLAGS += -DCONFIG_ETCONTROLLER_NRST +endif diff --git a/src/app/etcontroller/main.cc b/src/app/etcontroller/main.cc new file mode 100644 index 0000000..5e7b339 --- /dev/null +++ b/src/app/etcontroller/main.cc @@ -0,0 +1,28 @@ +#include "arch.h" +#include "driver/gpio.h" +#include "driver/stdout.h" +#include "driver/uptime.h" + +int main(void) +{ + arch.setup(); + gpio.setup(); + kout.setup(); + + kout << "Hello, World!" << endl; + kout << "Naptime." << endl; + +#ifdef CONFIG_ETCONTROLLER_NRST + gpio.output(CONFIG_ETCONTROLLER_RESET_PIN, 0); + arch.delay_ms(1); + gpio.write(CONFIG_ETCONTROLLER_RESET_PIN, 1); +#else + gpio.output(CONFIG_ETCONTROLLER_RESET_PIN, 1); + arch.delay_ms(1); + gpio.write(CONFIG_ETCONTROLLER_RESET_PIN, 0); +#endif + + arch.idle(); + + return 0; +} -- cgit v1.2.3