From 20881d27a1b90ccc19152a9f239846f5a1bff693 Mon Sep 17 00:00:00 2001 From: devsaurus Date: Sun, 18 Oct 2015 17:40:11 +0200 Subject: [PATCH] fix u8g/ucg spi.setup() --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 4c4d0d17..bdc1107f 100644 --- a/README.md +++ b/README.md @@ -405,7 +405,7 @@ All other pins can be assigned to any available GPIO: Also refer to the initialization sequence eg in [u8g_graphics_test.lua](lua_examples/u8glib/u8g_graphics_test.lua): ```lua -spi.setup(1, spi.MASTER, spi.CPOL_LOW, spi.CPHA_LOW, 8) +spi.setup(1, spi.MASTER, spi.CPOL_LOW, spi.CPHA_LOW, 8, 8) ``` @@ -488,7 +488,7 @@ All other pins can be assigned to any available GPIO: Also refer to the initialization sequence eg in [GraphicsTest.lua](lua_examples/ucglib/GraphicsRest.lua): ```lua -spi.setup(1, spi.MASTER, spi.CPOL_LOW, spi.CPHA_LOW, 8) +spi.setup(1, spi.MASTER, spi.CPOL_LOW, spi.CPHA_LOW, 8, 8) ``` #####Library usage