From 0d7cb1694ec8312c7ae26b1bcb582b77113dcc33 Mon Sep 17 00:00:00 2001 From: cw1812 <30872676+cw1812@users.noreply.github.com> Date: Tue, 20 Aug 2019 23:27:56 +0800 Subject: [PATCH] Update spi_drv.h For error: 'sendParamNoLen' is not a member of 'SpiDrv' --- src/utility/spi_drv.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/utility/spi_drv.h b/src/utility/spi_drv.h index c4b5a3c3..48991c63 100644 --- a/src/utility/spi_drv.h +++ b/src/utility/spi_drv.h @@ -88,6 +88,8 @@ class SpiDrv static void sendParamLen8(uint8_t param_len); static void sendParamLen16(uint16_t param_len); + + static void sendParamNoLen(uint8_t*, size_t, int); static uint8_t readParamLen8(uint8_t* param_len = NULL);