0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Zephyr + STM32F769 Discovery Kit > Timer > 2秒周期でLEDを点滅する実装

Last updated at Posted at 2019-11-20
動作環境
Ubuntu 18.04 LTS
STM32F769 Discovery Kit (以下、STM32F769)
Zephyr 2.1.0-rc1

概要

  • KernelのTimer機能を使う
  • LEDのサンプルblinkyプロジェクトをベースとする

参考

手順

  1. blinkyプロジェクトをコピー (wrk_blinky_timerとする)
    • cp -rp samples/basic/blinky samples/basic/wrk_blinky_timer
  2. src/main.cを後述のようにする
  3. west build -p auto -b stm32f769i_disco samples/basic/wrk_blinky_timer
  4. west flash

以下はmain.cをTimer使用にしたもの。

src/main.c
/*
 * Copyright (c) 2016 Intel Corporation
 *
 * SPDX-License-Identifier: Apache-2.0
 */

/*
Nov.20, 2019 change to timer driven 
	- use timer instead of k_sleep() in while()
	- branched from [blinky] project
*/

# include <zephyr.h>
# include <device.h>
# include <drivers/gpio.h>

# define LED_PORT	DT_ALIAS_LED0_GPIOS_CONTROLLER
# define LED		DT_ALIAS_LED0_GPIOS_PIN

struct device *dev;

struct k_timer my_timer;
void my_expiry_function(struct k_timer *timer_id)
{
	static u32_t cnt = 0;

	gpio_pin_write(dev, LED, cnt % 2);
	cnt++;
}

void main(void)
{
	dev = device_get_binding(LED_PORT);
	gpio_pin_configure(dev, LED, GPIO_DIR_OUT);

	k_timer_init(&my_timer, my_expiry_function, NULL);
	k_timer_start(&my_timer, K_SECONDS(1), K_SECONDS(1)); // first duration=1s, interval=1s

	while (1) {
		//
	}
}

結果

画面左下のLED(青色ボタンの右側の点灯しているLED)が2秒周期で点滅する。

IMG_1361.JPG

備考

  • devの定義の仕方がいまいちだが、タイマーの練習としてとりあず
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?