From 07590c273936dfa7d5fa6bd994ff4a858fd9f258 Mon Sep 17 00:00:00 2001 From: Hagen Kaye Date: Sat, 28 Dec 2013 20:22:12 -0500 Subject: [PATCH] changes to Makefile and main.c to add i2c.c --- stm/Makefile | 1 + stm/main.c | 2 ++ 2 files changed, 3 insertions(+) diff --git a/stm/Makefile b/stm/Makefile index 1e0831159e..c61900e3d1 100644 --- a/stm/Makefile +++ b/stm/Makefile @@ -33,6 +33,7 @@ SRC_C = \ audio.c \ sdio.c \ pybwlan.c \ + i2c.c \ SRC_S = \ startup_stm32f40xx.s \ diff --git a/stm/main.c b/stm/main.c index f45e899854..22ce46f256 100644 --- a/stm/main.c +++ b/stm/main.c @@ -37,6 +37,7 @@ #include "timer.h" #include "audio.h" #include "pybwlan.h" +#include "i2c.h" int errno; @@ -877,6 +878,7 @@ soft_reset: rt_store_attr(m, qstr_from_str_static("rand"), rt_make_function_0(pyb_rng_get)); rt_store_attr(m, qstr_from_str_static("Led"), rt_make_function_1(pyb_Led)); rt_store_attr(m, qstr_from_str_static("Servo"), rt_make_function_1(pyb_Servo)); + rt_store_attr(m, qstr_from_str_static("I2C"), rt_make_function_2(pyb_I2C)); rt_store_name(qstr_from_str_static("pyb"), m); rt_store_name(qstr_from_str_static("open"), rt_make_function_2(pyb_io_open));