Skip to content

Commit

Permalink
[example] Add Nucleo-G070RB blink example
Browse files Browse the repository at this point in the history
  • Loading branch information
chris-durand authored and salkinium committed Feb 2, 2024
1 parent e5fb526 commit 6de70ba
Show file tree
Hide file tree
Showing 3 changed files with 56 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ jobs:
- name: Examples STM32G0 Series
if: always()
run: |
(cd examples && ../tools/scripts/examples_compile.py nucleo_g071rb)
(cd examples && ../tools/scripts/examples_compile.py nucleo_g070rb nucleo_g071rb)
- name: Examples STM32L0 Series
if: always()
run: |
Expand Down
44 changes: 44 additions & 0 deletions examples/nucleo_g070rb/blink/main.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
/*
* Copyright (c) 2019, Niklas Hauser
*
* 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 <modm/board.hpp>
#include <modm/processing/timer.hpp>

using namespace Board;

// ----------------------------------------------------------------------------
int
main()
{
Board::initialize();
LedD13::setOutput(modm::Gpio::Low);

// Use the logging streams to print some messages.
// Change MODM_LOG_LEVEL above to enable or disable these messages
MODM_LOG_DEBUG << "debug" << modm::endl;
MODM_LOG_INFO << "info" << modm::endl;
MODM_LOG_WARNING << "warning" << modm::endl;
MODM_LOG_ERROR << "error" << modm::endl;

uint32_t counter{0};
modm::PeriodicTimer timer{500ms};

while (true)
{
if (timer.execute())
{
LedD13::toggle();

MODM_LOG_INFO << "loop: " << counter++ << modm::endl;
}
}

return 0;
}
11 changes: 11 additions & 0 deletions examples/nucleo_g070rb/blink/project.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
<library>
<extends>modm:nucleo-g070rb</extends>
<options>
<option name="modm:build:build.path">../../../build/nucleo_g070rb/blink</option>
</options>
<modules>
<module>modm:platform:gpio</module>
<module>modm:processing:timer</module>
<module>modm:build:scons</module>
</modules>
</library>

0 comments on commit 6de70ba

Please sign in to comment.