New Project :
---------------------------------------------------------------------
Microchip Embedded \ 32-bit MCC Harmony Project
---------------------------------------------------------------------
Framework Path : HarmonyFramework_MCC
---------------------------------------------------------------------
Location : C:\Exercises\Lab1_SYS_TIME_Delay
Folder   : Lab1_SYS_TIME_Delay
---------------------------------------------------------------------
Device Filter : ATSAMD21G18A
---------------------------------------------------------------------
Select MPLAB Harmony
---------------------------------------------------------------------
Required Content (Default selected)
csp 3.16.0
dev_packs 3.16.0
harmony-services 1.2.0
quick_docs 1.5.0
---------------------------------------------------------------------
Optional Content (Check Box) 
\usb 3.10.0
\core 3.12.0
\wireless_wifi 3.8.0
\mhc 3.8.5
---------------------------------------------------------------------
Finish
=====================================================================


!! Add below code in main.c !
---------------------------------------------------------------------
SYS_TIME_HANDLE tmrHandle;

---------------------------------------------------------------------
    SYS_TIME_DelayMS(1000, &tmrHandle);

---------------------------------------------------------------------
        if( SYS_TIME_DelayIsComplete(tmrHandle) == true )
        {
            LED1_Toggle();
            SYS_TIME_DelayMS(1000, &tmrHandle);
        }

---------------------------------------------------------------------
