From 39fad69607a83834c94a4c4f21e0086098ef614a Mon Sep 17 00:00:00 2001 From: Ryo Suzumoto Date: Mon, 7 Nov 2022 15:49:07 +0900 Subject: [PATCH] fix i2c header --- IfWrapper/i2c.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/IfWrapper/i2c.h b/IfWrapper/i2c.h index c0257c87f..f39df72e7 100644 --- a/IfWrapper/i2c.h +++ b/IfWrapper/i2c.h @@ -43,7 +43,7 @@ typedef enum I2C_ALREADY_ERR = -3, //!< チャンネルオープン済み I2C_FREQUENCY_ERR = -2, //!< 周波数異常 I2C_CH_ERR = -1, //!< チャンネル異常 (Port_configに無い) - I2C_OK = 0, //!< OKは0を踏襲 + I2C_OK = 0 //!< OKは0を踏襲 } I2C_ERR_CODE; /**