/** * Name: Ash Zahabiuon * Date: 5/26/2024 * Assignment: Lab 1 * Youtube: https://youtu.be/3TEgFfDGL5Y * * This program: * When ran blinking LED is observed in recorded video. Demo Lab 1. */ #include int main(void) { WDTCTL = WDTPW + WDTHOLD; // Stop watchdog timer P1DIR |= 0x01; // Set P1.0 to output direction for (;;) { volatile unsigned int i; P1OUT ^= 0x01; // Toggle P1.0 using exclusive-OR i = 50000; // Delay do (i--); while (i != 0); } }