#include <Arduino.h>
#include <ShiftRegGPIOXpander.h>

//==============================================>> General use definitions BEGIN
#define LoopDlyTtlTm 1500 // Time between task unblocking, time taken from the start of the task execution to the next execution 
#define MainCtrlTskPrrtyLvl 5 // Task priority level

static BaseType_t xReturned; /*!<Static variable to keep returning result value from Tasks and Timers executions*/
static BaseType_t errorFlag {pdFALSE};

BaseType_t srgxExecTskCore = xPortGetCoreID();
BaseType_t srgxExecTskPrrtyCnfg = MainCtrlTskPrrtyLvl;
//================================================>> General use definitions END
 
//======================================>> General use function prototypes BEGIN
void Error_Handler();
//========================================>> General use function prototypes END
 
//====================================>> Task Callback function prototypes BEGIN
void mainCtrlTsk(void *pvParameters);
//======================================>> Task Callback function prototypes END
 
//===========================================>> Tasks Handles declarations BEGIN
TaskHandle_t mainCtrlTskHndl {NULL};
//=============================================>> Tasks Handles declarations END

void setup() { 

   // Create the Main control task for setup and execution of the main code
    xReturned = xTaskCreatePinnedToCore(
       mainCtrlTsk,  // Callback function/task to be called
       "MainControlTask",  // Name of the task
       2048,   // Stack size (in bytes in ESP32, words in FreeRTOS), the minimum value is in the config file, for this is 768 bytes
       NULL,  // Pointer to the parameters for the function to work with
       srgxExecTskPrrtyCnfg, // Priority level given to the task
       &mainCtrlTskHndl, // Task handle
       srgxExecTskCore // Run in the App Core if it's a dual core mcu (ESP-FreeRTOS specific)
    );
    if(xReturned != pdPASS)
       Error_Handler();
 }

 void loop() {
   vTaskDelete(NULL); // Delete this task -the ESP-Arduino LoopTask()- and remove it from the execution list
}  

 //===============================>> User Tasks Implementations BEGIN
void mainCtrlTsk(void *pvParameters){
  delay(10);  //FTPO Part of the WOKWI simulator additions, for simulation startup needs

  uint8_t ds{33};
  uint8_t sh_cp{26};
  uint8_t st_cp{25};
  uint8_t srQty{1};
  
  uint8_t strtngVals [1] {0xFF};
  uint8_t* stVlsPtr = strtngVals;
  uint8_t tstData[4] {0xC2, 0xA0, 0x83, 0x91};  // "Gaby" common anode pin values

  ShiftRegGPIOXpander srgx(ds, sh_cp, st_cp, srQty, stVlsPtr);


  for(;;){
    srgx.digitalWriteSrAllSet();
    uint8_t setVal{LOW};
    for(uint8_t pinUpdtd{0}; pinUpdtd <= srgx.getMaxPin(); pinUpdtd++){
      srgx.digitalWriteSr(pinUpdtd, setVal);
      vTaskDelay(500);
    }
    setVal = HIGH;
    for(uint8_t pinUpdtd{0}; pinUpdtd <= srgx.getMaxPin(); pinUpdtd++){
      srgx.digitalWriteSr(pinUpdtd, setVal);
      vTaskDelay(500);
    }
    for(uint8_t ptrDsplc{0}; ptrDsplc < 4; ptrDsplc++){
      srgx.stampOverMain((tstData+ptrDsplc));
      vTaskDelay(1500);
    }
  }
}

//================================================>> General use functions BEGIN
//==================================================>> General use functions END

//=======================================>> User Functions Implementations BEGIN
 /**
  * @brief Error Handling function
  * 
  * Placeholder for a Error Handling function, in case of an error the execution
  * will be trapped in this endless loop
  */
 void Error_Handler(){
   for(;;)
   {    
   }
   
   return;
 }
//=========================================>> User Functions Implementations END
74HC595
sr4:Q1
sr4:Q2
sr4:Q3
sr4:Q4
sr4:Q5
sr4:Q6
sr4:Q7
sr4:GND
sr4:Q7S
sr4:MR
sr4:SHCP
sr4:STCP
sr4:OE
sr4:DS
sr4:Q0
sr4:VCC
DS/DIO
STCP/RCLK
SHCP/SCLK
VCC
SevSegSttDspHC595
esp1:0
esp1:2
esp1:4
esp1:5
esp1:12
esp1:13
esp1:14
esp1:15
esp1:16
esp1:17
esp1:18
esp1:19
esp1:21
esp1:22
esp1:23
esp1:25
esp1:26
esp1:27
esp1:32
esp1:33
esp1:34
esp1:35
esp1:3V3
esp1:EN
esp1:VP
esp1:VN
esp1:GND.1
esp1:D2
esp1:D3
esp1:CMD
esp1:5V
esp1:GND.2
esp1:TX
esp1:RX
esp1:GND.3
esp1:D1
esp1:D0
esp1:CLK
DIG1 R00 - b00~07
sevseg6:COM.1
sevseg6:COM.2
sevseg6:A
sevseg6:B
sevseg6:C
sevseg6:D
sevseg6:E
sevseg6:F
sevseg6:G
sevseg6:DP
r1:1
r1:2
r2:1
r2:2
r3:1
r3:2
r4:1
r4:2
r5:1
r5:2
r6:1
r6:2
r7:1
r7:2
r8:1
r8:2
GND
vcc1:VCC