From 28feb18a8f6d3dd2d0d78a40d4213407fb54e5dd Mon Sep 17 00:00:00 2001 From: Perry Hung Date: Tue, 27 Apr 2010 18:30:46 -0400 Subject: Added a spi send block function --- wirish/comm/HardwareSPI.cpp | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'wirish/comm/HardwareSPI.cpp') diff --git a/wirish/comm/HardwareSPI.cpp b/wirish/comm/HardwareSPI.cpp index e083ac1..4379a0d 100644 --- a/wirish/comm/HardwareSPI.cpp +++ b/wirish/comm/HardwareSPI.cpp @@ -119,7 +119,11 @@ void HardwareSPI::begin(void) { * @param data byte to send */ void HardwareSPI::send(uint8 data) { - spi_tx(this->spi_num, data); + spi_tx_byte(this->spi_num, data); +} + +void HardwareSPI::send(uint8 *buf, uint32 len) { + spi_tx(this->spi_num, buf, len); } -- cgit v1.2.3