Commented out energgy sotrage code to rever to old state

Dependencies:   mbed millis

Revision:
38:1c93a9501929
Parent:
36:5c61710813b3
--- a/remoteControl.cpp	Wed Jun 21 17:00:26 2023 +0000
+++ b/remoteControl.cpp	Fri Jun 23 17:32:40 2023 +0000
@@ -2,13 +2,16 @@
 #include "remoteControl.h"
 #include "definitions.h"
 
-Remote::Remote(SPI& remoteControl, DigitalOut& remoteControlCS) : _remoteControl(remoteControl), _remoteControlCS(remoteControlCS) {
+Remote::Remote(SPI& remoteControl, DigitalOut& remoteControlCS, SPI& lcdScreen, DigitalOut& lcdScreenCS) : _remoteControl(remoteControl), _remoteControlCS(remoteControlCS), _lcdScreen(lcdScreen), _lcdScreenCS(lcdScreenCS) {
     _remoteControl.format(8,0);    // FORMAT SPI AS 8-BIT DATA, SPI CLOCK MODE 0
+    _lcdScreen.format(8,0);
     const long arduinoClock = 16000000;
     long spiFrequency = arduinoClock / 4;
     _remoteControl.frequency(spiFrequency); // SET SPI CLOCK FREQUENCY
+    _lcdScreen.frequency(spiFrequency);
     
     _remoteControlCS = 1;   // DISABLE SLAVE
+    _lcdScreenCS = 1; // Disable Slave for LCD
     spiDelay = 600;    //DELAY BETWEEN SPI TRANSACTIONS (SO ARDUINO CAN KEEP UP WITH REQUESTS)
     
     commsGood = false;                 // Successful Comms Between Nucleo and Remote Control
@@ -33,6 +36,15 @@
     wait_us(spiDelay);
     
     _remoteControlCS = 1;         // DISABLE REMOTE SPI
+
+    if(precursor == 10)
+    {
+        _lcdScreenCS = 0;
+        _lcdScreen.write(data);
+        
+        wait_us(spiDelay);
+        _lcdScreenCS = 1;
+    }
 //    pc.printf("Disabling\r\n");
 
     return response;