From fdbb45b9f113137efc4e4556c3e58e1db86b0b2c Mon Sep 17 00:00:00 2001 From: Christopher Durand Date: Sat, 30 Oct 2021 22:32:29 +0200 Subject: [PATCH] [examples] Add example for Nucleo L031K6 with vector table in ram --- .../nucleo_l031k6/vector_table_ram/main.cpp | 54 +++++++++++++++++++ .../vector_table_ram/project.xml | 11 ++++ 2 files changed, 65 insertions(+) create mode 100644 examples/nucleo_l031k6/vector_table_ram/main.cpp create mode 100644 examples/nucleo_l031k6/vector_table_ram/project.xml diff --git a/examples/nucleo_l031k6/vector_table_ram/main.cpp b/examples/nucleo_l031k6/vector_table_ram/main.cpp new file mode 100644 index 0000000000..8e10a33b75 --- /dev/null +++ b/examples/nucleo_l031k6/vector_table_ram/main.cpp @@ -0,0 +1,54 @@ +/* + * Copyright (c) 2021, Christopher Durand + * + * This file is part of the modm project. + * + * This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this + * file, You can obtain one at http://mozilla.org/MPL/2.0/. + */ + +#include + +using namespace Board; + +// Blink LED with timer 2 interrupt. A custom handler is configured at runtime +// in the vector table located in SRAM. + +// If the LED is blinking with a period of 1 second, the vector table has been +// successfully relocated to ram. +// Set the option "modm:platform:cortex-m:vector_table_location" in project.xml +// to place the vector table in ram. + +static void tim2Handler() +{ + Timer2::acknowledgeInterruptFlags(Timer2::InterruptFlag::Update); + LedD13::toggle(); +} + +int +main() +{ + Board::initialize(); + LedD13::setOutput(); + + // Set custom handler, only works if vector table is in RAM + NVIC_SetVector(TIM2_IRQn, reinterpret_cast(&tim2Handler)); + + Timer2::enable(); + Timer2::setMode(Timer2::Mode::UpCounter); + Timer2::setPeriod(500'000 /* us */); + Timer2::applyAndReset(); + Timer2::start(); + Timer2::enableInterrupt(Timer2::Interrupt::Update); + Timer2::enableInterruptVector(true, 5); + + uint32_t counter{0}; + while (true) + { + modm::delay(100ms); + MODM_LOG_INFO << "loop: " << counter++ << modm::endl; + } + + return 0; +} diff --git a/examples/nucleo_l031k6/vector_table_ram/project.xml b/examples/nucleo_l031k6/vector_table_ram/project.xml new file mode 100644 index 0000000000..84c6927449 --- /dev/null +++ b/examples/nucleo_l031k6/vector_table_ram/project.xml @@ -0,0 +1,11 @@ + + modm:nucleo-l031k6 + + + + + + modm:build:scons + modm:platform:timer:2 + +