From c25415fac38dc2976369da40a9a19386ee3be03b Mon Sep 17 00:00:00 2001 From: sksat Date: Wed, 2 Aug 2023 11:43:19 +0900 Subject: [PATCH] add FIXME comment --- System/mod.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/System/mod.rs b/System/mod.rs index 9484ce2bf..b2518e6a0 100644 --- a/System/mod.rs +++ b/System/mod.rs @@ -1,4 +1,4 @@ -#[doc = "watchdog_timer.h が単体で bindgen 不可能だったので自前定義したもの"] +#[doc = "FIXME: watchdog_timer.h が単体で bindgen 不可能だったので自前定義したもの"] pub mod WatchdogTimer { extern "C" { pub fn WDT_init(); @@ -7,7 +7,7 @@ pub mod WatchdogTimer { } } -#[doc = "time_manager.h が単体で bindgen 不可能だったので自前定義したもの"] +#[doc = "FIXME: time_manager.h が単体で bindgen 不可能だったので自前定義したもの"] pub mod TimeManager { extern "C" { pub fn TMGR_init();