From 65301e5a0b382585887ea7b13e4eb9b0cb26c60f Mon Sep 17 00:00:00 2001 From: Karl Palsson Date: Tue, 21 Feb 2017 23:11:43 +0000 Subject: i2c-master: start progressing to extracting common i2c code --- tests/i2c-master/i2c-master.h | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 tests/i2c-master/i2c-master.h (limited to 'tests/i2c-master/i2c-master.h') diff --git a/tests/i2c-master/i2c-master.h b/tests/i2c-master/i2c-master.h new file mode 100644 index 0000000..5e41a9a --- /dev/null +++ b/tests/i2c-master/i2c-master.h @@ -0,0 +1,26 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ + +/* + * File: i2c-master.h + * Author: karlp + * + * Created on February 21, 2017, 10:59 PM + */ + +#pragma once + +#ifdef __cplusplus +extern "C" { +#endif + + + void i2cm_init(void); + +#ifdef __cplusplus +} +#endif + -- cgit