Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/Klipper3d/klipper.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/spicmds.c')
-rw-r--r--src/spicmds.c22
1 files changed, 22 insertions, 0 deletions
diff --git a/src/spicmds.c b/src/spicmds.c
new file mode 100644
index 000000000..bb37be2bf
--- /dev/null
+++ b/src/spicmds.c
@@ -0,0 +1,22 @@
+// Commands for sending messages on an SPI bus
+//
+// Copyright (C) 2016 Kevin O'Connor <kevin@koconnor.net>
+//
+// This file may be distributed under the terms of the GNU GPLv3 license.
+
+#include "board/gpio.h" // gpio_out_write
+#include "command.h" // DECL_COMMAND
+
+void
+command_send_spi_message(uint32_t *args)
+{
+ // For now, this only implements enough to program an ad5206 digipot
+ uint8_t len = args[1];
+ char *msg = (void*)(size_t)args[2];
+ spi_config();
+ struct gpio_out pin = gpio_out_setup(args[0], 0);
+ spi_transfer(msg, len);
+ gpio_out_write(pin, 1);
+ sendf("spi_response response=%*s", len, msg);
+}
+DECL_COMMAND(command_send_spi_message, "send_spi_message pin=%u msg=%*s");