diff --git a/src/app/etcontroller/Makefile.inc b/src/app/etcontroller/Makefile.inc new file mode 100644 index 0000000000000000000000000000000000000000..0ac928503ed1208d12450b96fd0c758152858f7d --- /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 0000000000000000000000000000000000000000..5e7b339d7b08fa8871acf68d3a7660b45b380c51 --- /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; +}